forked from sjl421/tornwrap
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 966 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Testing']
setup(name='tornwrap',
version='0.4.2',
description='tornado decorators and wrappers',
long_description=None,
classifiers=classifiers,
keywords='tornado tornadoweb decorators wrapper authenticated rate limited validate error handle stripe intercom',
author='@stevepeak',
author_email='hello@codecov.io',
url='http://github.com/codecov/tornwrap',
license='http://www.apache.org/licenses/LICENSE-2.0',
packages=['tornwrap'],
include_package_data=True,
zip_safe=True,
install_requires=['tornado>=4.0.0', 'valideer>=0.3.1', 'timestring==1.6.4'],
entry_points=None)