forked from Maillol/aiohttp-pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (51 loc) · 1.33 KB
/
setup.cfg
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
[metadata]
name = aiohttp_pydantic
version = attr: aiohttp_pydantic.__version__
url = https://github.com/Maillol/aiohttp-pydantic
author = Vincent Maillol
author_email = [email protected]
description = Aiohttp View using pydantic to validate request body and query sting regarding method annotations.
long_description = file: README.rst
keywords =
aiohttp
pydantic
annotations
validation
license = MIT
classifiers =
Intended Audience :: Developers
Intended Audience :: Information Technology
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Application Frameworks
Framework :: aiohttp
License :: OSI Approved :: MIT License
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
aiohttp
pydantic>=2.0,<3.0
swagger-ui-bundle
[options.extras_require]
test =
pytest==7.2.0
pytest-aiohttp==1.0.5
pytest-cov==4.0.0
readme-renderer==37.3
build>=1.0.3
ci =
%(test)s
codecov==2.1.13
twine>=4.0.0,<5
[options.packages.find]
exclude =
tests*
demo*
[options.package_data]
aiohttp_pydantic.oas = index.j2