-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (68 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
91 lines (68 loc) · 1.67 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[tool.poetry]
name = "tf-dota-pred"
version = "0.1.0"
description = "Dota 2 draft prediction"
authors = ["averagepythonfan <djonvorobei@bk.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
[tool.poetry.group.lab.dependencies]
jupyterlab = "^4.0.0"
boto3 = "^1.26.142"
polars = "^0.18.4"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.bot.dependencies]
aiogram = "3.0.0b7"
[tool.poetry.group.dev.dependencies]
alembic = "^1.11.1"
pytest = "^7.4.0"
pytest-asyncio = "^0.21.0"
python-dotenv = "^1.0.0"
[tool.poetry.group.fastapi.dependencies]
fastapi = "^0.100.0"
uvicorn = "^0.23.1"
sqlalchemy = "^2.0.19"
asyncpg = "^0.28.0"
[tool.poetry.group.etl.dependencies]
fastapi = "^0.100.0"
uvicorn = "^0.23.1"
sqlalchemy = "^2.0.19"
asyncpg = "^0.28.0"
polars = "^0.18.4"
aiohttp = "^3.8.5"
alembic = "^1.12.0"
[tool.poetry.group.scheduler.dependencies]
celery = "^5.3.4"
redis = "^5.0.0"
requests = "^2.31.0"
flower = "^2.0.1"
[tool.poetry.group.base.dependencies]
tensorflow = "2.13.1"
mlflow = "2.7.1"
[tool.poetry.group.mlflow.dependencies]
mlflow = {version = "2.7.1", extras = ["extras"]}
psycopg2-binary = "^2.9.9"
boto3 = "^1.28.62"
cryptography = "^41.0.4"
pymysql = "^1.1.0"
tritonclient = "2.38"
[tool.poetry.group.monolit.dependencies]
fastapi = "0.100.0"
uvicorn = "0.23.1"
aiohttp = "^3.8.6"
asyncpg = "^0.28.0"
celery = "^5.3.4"
redis = "^5.0.1"
flower = "^2.0.1"
polars = "0.18.4"
[tool.poetry.group.frontend.dependencies]
streamlit = "^1.27.2"
[tool.pytest.ini_options]
addopts = "--ignore=pgdata -p no:warnings"
pythonpath = [
".", "bot",
]
asyncio_mode="auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"