-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.09 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
56
57
[tool.poetry]
name = "FastAPI Clean Architecture"
version = "0.1.0"
description = ""
authors = ["bodaue"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
fastapi = "^0.115.5"
pydantic-settings = "^2.6.1"
dishka = "^1.4.1"
uvicorn = "^0.34.0"
sqlalchemy = { extras = ["asyncio"], version = "^2.0.37" }
asyncpg = "^0.30.0"
bcrypt = "^4.2.1"
alembic = "^1.14.1"
pydantic = { extras = ["email"], version = "^2.10.6" }
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
ruff = "^0.8.0"
pre-commit = "^4.0.1"
[tool.mypy]
plugins = ["pydantic.mypy"]
strict = true
follow_imports = "normal"
show_error_context = false
pretty = true
ignore_missing_imports = true
[tool.ruff]
target-version = "py313"
exclude = ["migrations"]
[tool.ruff.lint]
select = [
"ALL"
]
ignore = [
"RUF001", "RUF002", "RUF003", "RUF012",
"COM812", "ISC001",
"D",
"RET502", "RET503",
"ANN401",
"I001", "INP001",
"FBT001", "FBT002",
"TRY003", "EM101",
"PLR0913",
"TC001", "TC002"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"