-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.1 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.1 KB
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
29
30
31
32
33
34
35
36
37
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README') as file:
long_description = file.read()
setup(name='tornado-swirl',
python_requires='>=3.6.0',
version='0.1.20',
url='https://github.com/rduldulao/tornado-swirl',
zip_safe=False,
packages=['tornado_swirl'],
package_data={
'tornado_swirl': [
'openapi/*.*',
'static/*.*',
]
},
description='Extract swagger specs from your tornado project',
author='Rodolfo Duldulao',
license='MIT',
long_description=long_description,
install_requires=[
'tornado>=5.1.1'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6'
],
keywords=['SWAGGER', 'OPENAPI', 'TORNADO'],
download_url='https://github.com/rduldulao/tornado-swirl/archive/v_0.1.20.tar.gz',
)