Fix "Illegal option -o pipefail" problem and correct the parser path.
[releng.git] / utils / test / result_collection_api / tornado_swagger_ui / setup.py
1 try:
2     from setuptools import setup
3 except ImportError:
4     from distutils.core import setup
5
6 with open('README') as file:
7     long_description = file.read()
8
9 setup(name='tornado-swagger',
10       version='1.0',
11       url='https://github.com/SerenaFeng/tornado-swagger',
12       zip_safe=False,
13       packages=['tornado_swagger'],
14       package_data={
15         'tornado_swagger': [
16           'static/*.*',
17           'static/css/*.*',
18           'static/images/*.*',
19           'static/lib/*.*',
20           'static/lib/shred/*.*',
21         ]
22       },
23       description='Extract swagger specs from your tornado project',
24       author='Serena Feng',
25       license='MIT',
26       long_description=long_description,
27       install_requires=[
28         'tornado>=3.1',
29         'epydoc>=0.3.1'
30       ],
31 )