forked from Arutemu64/fanfan-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1 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
[tool.poetry]
name = "fanfan-bot"
version = "0.1.0"
description = ""
authors = ["Arutemu64 <[email protected]>"]
packages = [{include = "fanfan"}]
[tool.poetry.dependencies]
python = "^3.12"
aiogram = {version = "^3.4.1", extras = ["fast"]}
aiogram-dialog = "^2.1.0"
alembic = "^1.13.1"
asyncpg = "^0.29.0"
dishka = "^1.0.0"
fastapi = "^0.110.1"
fastapi-storages = "^0.3.0"
itsdangerous = "^2.1.2"
jinja2 = "^3.1.3"
numpy = "^1.26.4"
openpyxl = "^3.1.2"
orjson = "^3.10.0"
pandas = "^2.2.1"
pydantic = "2.5.3"
pydantic-settings = "^2.2.1"
pyjwt = "^2.8.0"
qrcode = {version = "^7.4.2", extras = ["pil"]}
redis = "^5.0.3"
sentry-sdk = "^1.44.1"
sqladmin = "^0.16.1"
sqlalchemy = "^2.0.29"
taskiq = "^0.11.0"
taskiq-redis = "^0.5.5"
uvicorn = "^0.29.0"
[tool.poetry.group.dev]
optional=true
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
mypy = "^1.8.0"
ruff = "^0.3.4"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"