-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
33 lines (29 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aiohttp-apischema"
dependencies = ["aiohttp>=3.9", "pydantic>=2", 'typing-extensions ; python_version < "3.13"']
description = "Generate a schema and validate user input from types"
dynamic = ["version"]
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Development Status :: 2 - Pre-Alpha"
]
[project.urls]
Homepage = "https://github.com/aio-libs/aiohttp-apischema"
Issues = "https://github.com/aio-libs/aiohttp-apischema/issues"
[tool.setuptools]
packages = ["aiohttp_apischema"]
[tool.setuptools.dynamic]
version = {attr = "aiohttp_apischema.__version__"}