forked from danleonard-nj/swagger-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 777 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '0.1.1'
DESCRIPTION = 'Swagger UI for Flask apps'
LONG_DESCRIPTION = 'Automatically generate Swagger UI documentation for a Flask app. Batteries included.'
setup(
name="swagger-gen",
version=VERSION,
author="Dan Leonard",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
package_data={'swagger_gen': ['./resources/swagger.pkl']},
packages=find_packages(),
install_requires=['flask'],
keywords=['python', 'swagger-gen'],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)