-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (47 loc) · 1.07 KB
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
[project]
name = "react-fastapi-admin"
version = "0.1.0"
description = "React Fastapi admin"
requires-python = ">=3.11"
dependencies = [
"aerich==0.9.2",
"aiosqlite==0.22.1",
"bcrypt==5.0.0",
"email-validator==2.3.0",
"fastapi==0.135.1",
"granian[reload]==2.7.2",
"loguru==0.7.3",
"pydantic==2.12.5",
"pydantic-settings==2.13.1",
"pytest==8.3.5",
"pyjwt==2.12.1",
"python-dotenv==1.2.2",
"python-multipart==0.0.22",
"starlette==0.52.1",
"tortoise-orm==1.1.6",
"pillow==11.1.0",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = false
override-dependencies = ["tortoise-orm==1.1.6"]
[tool.setuptools.packages.find]
include = ["app*"]
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
extend-select = []
ignore = ["F403", "F405"]
[tool.isort]
profile = "black"
line_length = 120
[tool.aerich]
tortoise_orm = "app.settings.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."