forked from plangrid/flask-rebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.81 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# packages required for local development and testing
development = [
"pytest==4.6.8",
"mock==2.0.0",
"jsonschema==3.0.2",
"Sphinx==1.7.0",
"sphinx_rtd_theme==0.2.4",
"bumpversion==0.5.3",
"gitchangelog>=3.0.4,<4.0.0",
"pre-commit>=1.14.4",
]
if __name__ == "__main__":
setup(
name="flask-rebar",
version="2.0.0rc2",
author="Barak Alon",
author_email="[email protected]",
description="Flask-Rebar combines flask, marshmallow, and swagger for robust REST services.",
long_description=open("README.rst").read(),
keywords=["flask", "rest", "marshmallow", "openapi", "swagger"],
license="MIT",
packages=find_packages(exclude=("test*", "examples")),
include_package_data=True,
extras_require={"dev": development},
install_requires=["Flask>=1.0,<2", "marshmallow>=3.0,<4"],
url="https://github.com/plangrid/flask-rebar",
classifiers=[
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)