-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (48 loc) · 1.35 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
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "parse-ozon"
version = "0.1.0"
description = ""
authors = ["averagepythonfan <djonvorobei@bk.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.0.10"
keras-cv = "^0.8.2"
matplotlib = "^3.8.3"
[tool.poetry.group.guru.dependencies]
beautifulsoup4 = "^4.12.2"
requests = "^2.31.0"
[tool.poetry.group.play.dependencies]
pytest-playwright = "^0.4.3"
[tool.poetry.group.model.dependencies]
torch = {version = "^2.1.2+cpu", source = "pytorch-cpu"}
torchvision = {version = "^0.16.2+cpu", source = "pytorch-cpu"}
torchaudio = {version = "^2.1.2+cpu", source = "pytorch-cpu"}
transformers = "^4.36.2"
huggingface-hub = "^0.20.2"
[tool.poetry.group.base.dependencies]
fastapi = "^0.109.0"
uvicorn = "^0.26.0"
celery = "^5.3.6"
redis = "^5.0.1"
aiohttp = "^3.9.1"
python-multipart = "^0.0.6"
pymongo = "^4.6.2"
pillow = "^10.2.0"
[tool.poetry.group.bot.dependencies]
aiogram = "^3.3.0"
pymongo = "^4.6.2"
[tool.poetry.group.cv.dependencies]
tensorflow = "2.15"
[tool.poetry.group.local.dependencies]
jupyterlab = "^4.1.5"
pytest-playwright = "^0.4.4"
requests = "^2.31.0"
[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"