-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 841 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
[project]
name = "fastapi-tortoise-poetry-template"
version = "0.1.0"
description = ""
authors = [{ name="Waket Zheng", email="[email protected]" }]
readme = "README.md"
requires-python = ">=3.9,<4.0"
dependencies = [
"fastapi[standard]>=0.115.6",
"tortoise-orm>=0.23.0",
"aerich>=0.8.1",
"tortoise-database-url>=0.1.4",
"fastapi-cdn-host>=0.8.3",
"asynctor>=0.6.9",
]
[project.optional-dependencies]
mysql = ["aiomysql>=0.2.0"]
postgres = ["asyncpg>=0.30.0"]
[tool.poetry]
requires-poetry = ">=2.0"
package-mode = false
[tool.poetry.group.dev.dependencies]
tomli-w = "^1.1.0"
fast-dev-cli = "^0.11.5"
asgi-lifespan = "^2.1.0"
[tool.aerich]
tortoise_orm = "settings.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"