-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
47 lines (42 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
47
[project]
name = "typed-api-response"
version = "1.0.0"
description = "Type-safe, extensible, strictly validated API response system for Python apps"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Michael Pearce", email = "firstflush@protonmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0.0"
]
keywords = ["api", "response", "wrapper", "pydantic", "typescript", "typed", "validation", "http", "fastapi", "django", "ninja"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Framework :: FastAPI",
"Framework :: Django",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"mypy>=1.0",
"build",
"twine"
]
[project.urls]
Homepage = "https://github.com/firstflush/typed-api-response"
Repository = "https://github.com/firstflush/typed-api-response"
Issues = "https://github.com/firstflush/typed-api-response/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["typed_api_response"]