forked from kevwo/flask-restful-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 785 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
26
27
28
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',
version='1.01',
url='https://github.com/kevwo/flask-restful-swagger',
zip_safe=False,
packages=['flask_restful_swagger'],
package_data={
'flask_restful_swagger': [
'static/*.*',
'static/css/*.*',
'static/images/*.*',
'static/lib/*.*',
'static/lib/shred/*.*',
]
},
description='Extrarct swagger specs from your flast-restful project',
author='Ran Tavory',
license='MIT',
long_description=long_description,
install_requires=['Flask-RESTful>=0.2.12']
)