-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.13 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
[project]
name = "python-template"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alembic>=1.15.1",
"asyncpg>=0.30.0",
"fastapi[standard]>=0.115.11",
"orjson>=3.10.16",
"prometheus-fastapi-instrumentator>=7.1.0",
"psycopg[binary]>=3.2.6",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1",
"sqlalchemy[asyncio]>=2.0.39",
"sqlmodel>=0.0.24",
"uuid6>=2024.7.10",
]
[dependency-groups]
dev = [
"faker>=37.1.0",
"locust>=2.33.2",
"pre-commit>=4.2.0",
"pyright>=1.1.398",
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"ruff>=0.11.2",
"testcontainers[postgres]>=4.9.2",
]
[tool.pytest.ini_options]
pythonpath = "src"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
addopts = "--cov=src --cov-report=term-missing --cov-report=xml"
testpaths = ["tests"]
[tool.ruff]
# Set the maximum line length to 99.
line-length = 99
[tool.ruff.lint]
extend-select = ["E501"]
[tool.pyright]
reportMissingImports = "error"
reportMissingTypeStubs = false