-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
41 lines (38 loc) · 1.12 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
[metadata]
name = python-openapi
version = attr: pyopenapi.__version__
description = Generate an OpenAPI specification from a Python class definition
author = Levente Hunyadi
author_email = [email protected]
url = https://github.com/hunyadi/pyopenapi
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
[options]
zip_safe = True
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
aiohttp >= 3.8
json_strong_typing >= 0.2.7
[options.packages.find]
exclude =
tests*
[options.package_data]
pyopenapi =
*.html
py.typed