-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "apiexception"
version = "0.2.3"
description = "Consistent JSON response formatting and exception & error handling for FastAPI applications"
authors = ["Ahmet Kutay URAL <ahmetkutayural@gmail.com>"]
readme = "README.md"
license = "MIT"
keywords = ["fastapi", "exception", "error-handling", "json-response"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
packages = [
{ include = "api_exception" }
]
[tool.poetry.urls]
"Documentation" = "https://akutayural.github.io/APIException/"
"Source" = "https://github.com/akutayural/APIException"
"Bug Tracker" = "https://github.com/akutayural/APIException/issues"
"Changelog" = "https://github.com/akutayural/APIException/blob/main/docs/changelog.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
fastapi = ">=0.115.4"
httpx = ">=0.27.0"
pydantic = ">=2.0.0"
click = ">=8.0.0"
typing-extensions = ">=4.0.0"
[tool.poetry.group.dev.dependencies]
mkdocs-awesome-pages-plugin = ">=2.10.1"
mkdocs-macros-plugin = ">=1.3.7"
mkdocs-material = ">=9.6.16"
ruff = "==0.12.5"
setuptools = ">=80.9.0"
uvicorn = ">=0.32.0"
mypy = "^1.17.1"
types-requests = "^2.32.4.20250809"
types-click = "^7.1.8"
[tool.poetry.scripts]
APIException-info = "api_exception.__main__:main"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools.package-data]
api_exception = ["py.typed"]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
strict_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true