-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
53 lines (50 loc) · 1.53 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os
from setuptools import setup, find_packages
testing_requirements = [
'nose',
'rednose',
'mock',
'coverage',
'Django',
'djangorestframework',
'falcon',
'bottle',
'flask'
]
setup(
name='py2swagger',
version='1.0.0',
packages=find_packages(exclude=('tests', 'tests.*')),
license='MIT',
description='Swagger schema builder',
long_description=open('README.rst' if os.path.exists('README.rst') else 'README.md').read(),
install_requires=open('requirements.txt').read(),
extras_require={
'reST': ['docutils>=0.8'],
'testing': testing_requirements,
},
tests_require=testing_requirements,
test_suite='nose.collector',
author='Arello Mobile',
url='https://github.com/Arello-Mobile/py2swagger',
platforms='Posix; MacOS X; Windows',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Documentation',
],
entry_points={
'console_scripts': [
'py2swagger = py2swagger:run',
]
},
package_data={'py2swagger.plugins': ['*.py2swagger']}
)