-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 755 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
[tool.poetry]
name = "orders_bot"
version = "0.1.0"
description = ""
authors = ["darksidecat <bitalik371@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.10"
aiogram = {version = "=3.0.0b3", allow-prereleases = true}
aiogram_dialog = {git = "https://github.com/darksidecat/aiogram_dialog.git", branch = "aiogram3-quick-fixes"}
SQLAlchemy = "^1.4.36"
aioredis = "^2.0.1"
alembic = "^1.7.7"
asyncpg = "^0.25.0"
attrs = "^21.4.0"
pydantic = "^1.9.1"
redis = "^4.3.1"
python-dotenv = "^0.20.0"
[tool.poetry.dev-dependencies]
pytest-asyncio = "^0.18.3"
mypy = "^0.950"
sqlalchemy2-stubs = "^0.0.2-alpha.22"
black = "^22.3.0"
isort = "^5.10.1"
pytest = "^7.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"