-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
56 lines (46 loc) · 1.35 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
[tool.poetry]
name = "fastapi-template"
version = "1.3.0"
authors = ["Donny Peeters <[email protected]>"]
maintainers = ["Donny Peeters <[email protected]>"]
description = "A FastAPI and SQLAlchemy project template with Docker and GitHub Actions."
readme = "README.md"
homepage = "https://github.com/Donnype/fastapi-template"
repository = "https://github.com/Donnype/fastapi-template"
keywords = ["FastAPI", "Template"]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.0"
fastapi = "^0.115.2"
uvicorn = "^0.32.0"
SQLAlchemy = "^1.4.42"
alembic = "^1.8.1"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
httpx = "^0.27.0"
pytest = "^7.4.4"
pre-commit = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"unit: mark a test as a unit test.",
"integration: mark test as an integration test.",
]
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.vulture]
min_confidence = 90
exclude = ["/tests/", "*venv*"]
paths = ["."]
[tool.ruff]
select = ["E", "F", "ERA", "W", "TID", "I", "G", "INP", "T20", "UP", "ISC", "PTH", "SIM", "PLC", "A"]
ignore = ["UP006", "UP007", "A003", "T201", "T203"]
fix = true
line-length = 120
target-version = "py310"
task-tags = ["Example", "todo", "TODO", "FIXME"]