-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 828 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "FastAPI-Blueprint"
version = "0.1.0"
description = "FastApi blueprint"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.128.0",
"pydantic-settings>=2.12.0",
"SQLAlchemy>=2.0.45",
"alembic>=1.18.0",
"psycopg2>=2.9.9",
"uvicorn>=0.40.0",
"python-dotenv>=1.2.1"
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.1",
"ruff>=0.14.5",
"pytest-asyncio>=1.3.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "app"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N"]
ignore = []