-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
46 lines (40 loc) · 1.45 KB
/
setup.py
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
from io import open
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
readme = f.read()
with open(path.join(here, "requirements/production.txt"), encoding="utf-8") as f:
requires = [req.strip() for req in f if req]
setup(
name="flask_pydantic_spec",
version="0.6.0",
author="Chris Gearing, Simon Hayward, Rob Young, Donald Fleming, Saurabh Jha",
author_email="[email protected]",
description=(
"generate OpenAPI document and validate request & response " "with Python annotations."
),
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/turner-townsend/flask-pydantic-spec",
packages=find_packages(exclude=["examples*", "tests*"]),
package_data={},
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
install_requires=requires,
extras_require={
"flask": ["flask"],
},
zip_safe=False,
entry_points={
"console_scripts": [],
},
)