-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.24 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
[project]
name = "fastapi-boilerplate"
version = "0.1.0"
description = "FastAPI Boilerplate"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"authlib>=1.4.0",
"fastapi-pagination>=0.12.34",
"fastapi>=0.115.6",
"python-socketio>=5.12.0",
"strawberry-graphql>=0.256.1",
"piccolo-api>=1.5.2",
"aerich>=0.8.0",
"tortoise-orm>=0.23.0",
"dynaconf>=3.2.6",
"pydantic>=2.10.4",
"pydantic-settings>=2.7.0",
"loguru>=0.7.3",
"uvicorn>=0.34.0",
"uvloop>=0.21.0",
"taskiq>=0.11.10",
"apprise>=1.9.1",
"taskiq-aio-pika>=0.4.1",
"aiofiles>=24.1.0",
"minio>=7.2.13",
"fastapi-health>=0.4.0",
"ujson>=5.10.0",
"authx>=1.4.1",
"pendulum>=3.0.0",
]
[project.optional-dependencies]
test = [
"locust>=2.32.5",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.0",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
]
[dependency-groups]
dev = [
"black>=24.10.0",
"isort>=5.13.2",
"pre-commit>=4.0.1",
"ruff>=0.8.4",
]
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
force_single_line = true
[tool.aerich]
tortoise_orm = "lifespan.TORTOISE_ORM"
location = "./src/migrations"
src_folder = "./src"