-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapi-router-controller"
version = "0.0.0"
description = "A FastAPI utility to allow Controller Class usage"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Pasquale Carmine Carbone", email = "pasqualecarmine.carbone@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.63.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/KiraPC/fastapi-router-controller"
[project.optional-dependencies]
tests = ["pytest", "pytest-cov", "requests", "httpx"]
[tool.setuptools.packages.find]
exclude = ["venv", "*.egg-info", "build"]
[tool.black]
line-length = 88
target-version = ['py311', 'py312', 'py313', 'py314']
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov fastapi_router_controller --cov-report term --cov-report html"