forked from rantav/flask-restful-swagger
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
25 lines (23 loc) · 773 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README') as file:
long_description = file.read()
setup(name='flask-restful-swagger-2',
version='0.35',
url='https://github.com/swege/flask-restful-swagger-2.0',
zip_safe=False,
packages=['flask_restful_swagger_2'],
package_data={
'flask_restful_swagger_2': [
]
},
description='Extract swagger specs from your flask-restful project. Project based on flask-restful-swagger by Ran Tavory.',
author='Soeren Wegener',
license='MIT',
long_description=long_description,
install_requires=['Flask-RESTful>=0.2.12'],
tests_require=['nose'],
test_suite='nose.collector'
)