-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (39 loc) · 980 Bytes
/
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
[tool.poetry]
name = "refact-server"
version = "0.1.0"
description = ""
authors = ["wenquan <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.70.1"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
tortoise-orm = {extras = ["aiomysql"], version = "^0.19.2"}
loguru = "^0.6.0"
aerich = "^0.6.3"
passlib = "^1.7.4"
pyjwt = "^2.4.0"
python-multipart = "^0.0.5"
simplejson = "^3.17.6"
requests = "^2.28.1"
python-jose = "^3.3.0"
jose = "^1.0.0"
transaction = "^3.0.1"
oss2 = "2.0.5"
shortuuid = "^1.0.9"
redis = "^4.3.4"
aioredis = "^2.0.1"
xmlschema = "^2.1.1"
casbin = "^1.17.5"
casbin-tortoise-adapter = "^1.2.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple"
default = true
[tool.aerich]
tortoise_orm = "core.settings.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."