-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (23 loc) · 808 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
25
from setuptools import setup, find_packages
VERSION = '0.1.2'
DESCRIPTION = 'Swagger UI for Flask apps'
LONG_DESCRIPTION = 'Automatically generate Swagger UI documentation for a Flask app. Batteries included.'
setup(
name='swagger-gen',
python_requires='>=3.9.0',
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',
]
)