-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (44 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
57 lines (44 loc) · 1.03 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
[tool.poetry]
name = "gecko-bot"
version = "0.1.0"
description = "Telegram Bot for crypto stuff."
authors = ["averagepythonfan <djonvorobei@bk.ru>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pytest = "^7.3.0"
pytest-asyncio = "^0.21.0"
[tool.poetry.group.fastapi.dependencies]
fastapi = "^0.95.0"
uvicorn = "^0.21.1"
aiohttp = "^3.8.4"
pymongo = "^4.3.3"
motor = "^3.1.2"
seaborn = "^0.12.2"
aioredis = "^2.0.1"
[tool.poetry.group.bot.dependencies]
aiogram = "3.0.0b7"
[tool.poetry.group.dev.dependencies]
setuptools = "^67.7.2"
httpx = "^0.24.0"
flake8 = "^6.0.0"
[tool.poetry.group.mlflow_client.dependencies]
mlflow = "^2.3.1"
prophet = "^1.1.2"
statsmodels = "^0.14.0"
fastapi = "^0.95.1"
uvicorn = "0.21.1"
pandas = "^2.0.1"
[tool.poetry.group.scheduler.dependencies]
schedule = "^1.2.0"
requests = "^2.30.0"
pymongo = "4.3.3"
[tool.pytest.ini_options]
pythonpath = [
".", "fastapi_app",
]
asyncio_mode="auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"