-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
37 lines (32 loc) · 1.08 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
base = os.path.dirname(os.path.abspath(__file__))
README_PATH = os.path.join(base, "README.rst")
install_requires = [
'transmute-core>=1.9',
'sanic',
]
tests_require = []
setup(name='sanic-transmute',
version='0.1.3',
description='',
long_description=open(README_PATH).read(),
author='Yun Xu',
author_email='[email protected]',
url='https://github.com/yunstanford/sanic-transmute/',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)