-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
92 lines (86 loc) · 1.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "tifa"
version = "0.1.0"
description = ""
authors = ["twocucao <[email protected]>"]
include = ["tifa/templates/", "tifa/static/"]
[[tool.poetry.source]]
name = "tencent"
url = 'https://mirrors.cloud.tencent.com/pypi/simple'
priority = 'primary'
[tool.poetry.dependencies]
python = "^3.11"
aiobotocore = "^2.12.1"
aiofiles = "^23.2.1"
aiohttp = "^3.9.3"
aiomysql = "^0.2.0"
aioredis = "^2.0.1"
alembic = "^1.13.1"
asyncer = "^0.0.5"
attrs = "^23.2.0"
celery = "^5.3.6"
devtools = "^0.12.2"
fabric = "^3.2.2"
fastapi = "^0.110.0"
greenlet = "^3.0.3"
gunicorn = "^21.2.0"
httpx = "^0.27.0"
invoke = "^2.2.0"
ipython = "^8.22.2"
jinja2 = "^3.1.3"
loguru = "^0.7.2"
markdown = "^3.5.2"
orjson = "^3.9.15"
pandas = "^2.2.1"
passlib = "^1.7.4"
pillow = "^10.2.0"
pydantic = "^2.6.4"
pydantic-core = "^2.16.3"
pydantic-settings = "^2.2.1"
pymysql = "^1.1.0"
python-dotenv = "^1.0.1"
python-jose = "^3.3.0"
qrcode = "^7.4.2"
raven = "^6.10.0"
redis = { extras = ["hiredis"], version = "^5.0.3" }
requests = "^2.31.0"
rich = "^13.7.1"
tenacity = "^8.2.3"
typer = "^0.9.0"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
xlrd = "^2.0.1"
xlsxwriter = "^3.2.0"
xlwt = "^1.3.0"
arq = "^0.25.0"
aerich = "^0.7.2"
tortoise-orm = { extras = ["asyncmy"], version = "^0.20.0" }
ruff = "^0.3.4"
[tool.poetry.dev-dependencies]
coverage = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pre-commit = "*"
pytest-asyncio = "^0.15.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.3"
[tool.black]
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry.scripts]
fastcli = 'tifa.cli:cli'
tifa-cli = 'tifa.cli:cli'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"