-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1002 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "kodiks-ai-lib"
version = "1.0.4"
description = "Simple and flexible ML workflow engine and Utilities"
authors = ["Ramazan Güven <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/kodiks/kodiks-ai-lib"
repository = "https://github.com/kodiks/kodiks-ai-lib"
keywords = ["machine learning", "pipeline", "rabbitmq"]
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development",
"Programming Language :: Python :: 3.9",
]
include = [
"LICENSE",
"README.md"
]
[tool.poetry.dependencies]
python = "^3.9"
pika = "^1.3.0"
requests = "^2.31.0"
black = "^24.8.0"
pre-commit = "^3.8.0"
minio = "^7.2.9"
loguru = "^0.7.2"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
# New scripts
[tool.poetry.scripts]
kodiks-ai-lib = 'kodiks_ai_lib:main'
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"