-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.36 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "cogstack-model-gateway"
version = "0.1.0"
description = "A Gateway for accessing Cogstack ModelServe instances"
authors = ["Phoevos Kalemkeris <[email protected]>"]
license = "Elastic License 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
sqlmodel = "^0.0.22"
tenacity = "^9.0.0"
pika = "^1.3.2"
pydantic-settings = "^2.6.1"
psycopg2-binary = "^2.9.10"
python-dotenv = "^1.0.1"
requests = "^2.32.3"
fastapi = {extras = ["standard"], version = "^0.115.5"}
docker = "^7.1.0"
mlflow = "^2.18.0"
python-multipart = "^0.0.19"
minio = "^7.2.12"
[tool.poetry.group.ripper.dependencies]
docker = "^7.1.0"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
ipykernel = "^6.29.5"
pre-commit = "^4.0.1"
pytest = "^8.3.3"
httpx = "^0.27.2"
testcontainers = {extras = ["minio", "postgres", "rabbitmq"], version = "^4.9.0"}
gitpython = "^3.1.44"
pytest-rerunfailures = "^15.0"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint.isort]
known-local-folder = ["common", "gateway", "scheduler"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
addopts = "-ra -s --disable-warnings --enable-cmg-logging"
pythonpath = ["."]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"