forked from python-restx/flask-restx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
115 lines (101 loc) · 3.47 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# flake8: noqa
import io
import os
import re
import sys
from setuptools import setup, find_packages
RE_REQUIREMENT = re.compile(r"^\s*-r\s*(?P<filename>.*)$")
PYPI_RST_FILTERS = (
# Replace Python crossreferences by simple monospace
(r":(?:class|func|meth|mod|attr|obj|exc|data|const):`~(?:\w+\.)*(\w+)`", r"``\1``"),
(r":(?:class|func|meth|mod|attr|obj|exc|data|const):`([^`]+)`", r"``\1``"),
# replace doc references
(
r":doc:`(.+) <(.*)>`",
r"`\1 <https://flask-restx.readthedocs.io/en/stable\2.html>`_",
),
# replace issues references
(
r":issue:`(.+?)`",
r"`#\1 <https://github.com/python-restx/flask-restx/issues/\1>`_",
),
# replace pr references
(r":pr:`(.+?)`", r"`#\1 <https://github.com/python-restx/flask-restx/pull/\1>`_"),
# replace commit references
(
r":commit:`(.+?)`",
r"`#\1 <https://github.com/python-restx/flask-restx/commit/\1>`_",
),
# Drop unrecognized currentmodule
(r"\.\. currentmodule:: .*", ""),
)
def rst(filename):
"""
Load rst file and sanitize it for PyPI.
Remove unsupported github tags:
- code-block directive
- all badges
"""
content = io.open(filename).read()
for regex, replacement in PYPI_RST_FILTERS:
content = re.sub(regex, replacement, content)
return content
def pip(filename):
"""Parse pip reqs file and transform it to setuptools requirements."""
requirements = []
for line in io.open(os.path.join("requirements", "{0}.pip".format(filename))):
line = line.strip()
if not line or "://" in line or line.startswith("#"):
continue
requirements.append(line)
return requirements
long_description = "\n".join((rst("README.rst"), ""))
exec(
compile(open("flask_restx/__about__.py").read(), "flask_restx/__about__.py", "exec")
)
install_requires = pip("install")
doc_require = pip("doc")
tests_require = pip("test")
dev_require = tests_require + pip("develop")
setup(
name="flask-restx",
version=__version__,
description=__description__,
long_description=long_description,
url="https://github.com/python-restx/flask-restx",
author="python-restx Authors",
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
dev_require=dev_require,
extras_require={
"test": tests_require,
"doc": doc_require,
"dev": dev_require,
},
license="BSD-3-Clause",
zip_safe=False,
keywords="flask restx rest api swagger openapi",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: System :: Software Distribution",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
python_requires=">=3.8"
)