-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.09 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
install_requires = [
'transmute-core==0.3.1',
'PyYAML<=4',
'swagger-schema==0.2.0',
]
tests_require = []
setup(name='djaio-swagger',
version='0.0.10',
description='The battery to generate additional swagger-spec json routes for '
'your ClassBasedView methods (get,post,put,delete). Based on aiothh-transmute app by Yusuke Tsutsumi.',
author='Alexander Sivov',
author_email='aasivov@sberned.ru',
url='',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Software Distribution',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
tests_require=tests_require
)