-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (30 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
41 lines (30 loc) · 761 Bytes
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
[tool.poetry]
name = "wildberries-tracker"
version = "0.1.0"
description = "Telegram Bot for tracking prices on WB"
authors = ["averagepythonfan <djonvorobei@bk.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.0"
[tool.poetry.group.bot.dependencies]
aiogram = "3.0.0b7"
sqlalchemy = "^2.0.9"
alembic = "^1.10.3"
asyncpg = "^0.27.0"
[tool.poetry.group.script.dependencies]
sqlalchemy = "^2.0.9"
selenium = "^4.9.0"
psycopg2-binary = "^2.9.6"
requests = "^2.28.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest-asyncio = "^0.21.0"
[tool.pytest.ini_options]
pythonpath = [
".", "bot"
]
asyncio_mode="auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"