-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.02 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
[project]
name = "fastapi-project-template"
version = "0.1.0"
description = "An intermediate level project template. Flexible and scalable, but not overloaded with abstractions."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"asgi-lifespan>=2.1.0",
"asyncpg>=0.30.0",
"email-validator>=2.2.0",
"fastapi>=0.115.11",
"httpx>=0.28.1",
"psycopg2-binary>=2.9.10",
"pydantic-extra-types>=2.10.2",
"pydantic-settings>=2.8.1",
"pytest-asyncio>=0.25.3",
"semver>=3.0.4",
"uvicorn>=0.34.0",
"yoyo-migrations>=9.0.0",
]
[dependency-groups]
dev = [
"asyncpg-stubs>=0.30.1",
"mypy>=1.15.0",
"ruff>=0.9.10",
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
plugins = ['pydantic.mypy']
exclude = ["src/db/migrations"]
[tool.ruff]
target-version = "py313"
line-length = 120
extend-exclude = ["src/db/migrations"]
[tool.ruff.lint]
select = [
"ALL",
]
ignore = [
"ARG",
"D",
"EM",
"ANN401",
"S101",
"TRY003",
]