-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 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
from setuptools import setup, find_packages
import tornadopy
setup(
name="tornadopy",
version=tornadopy.__version__,
description="tornadopy based on tornado",
long_description="tornadopy is based on tornado,django like web framework.",
keywords='python tornadopy django tornado',
author="xubigshu",
url="https://github.com/xubigshu/tornadopy",
license="BSD",
packages=find_packages(),
package_data={'tornadopy': ['resource/exception.html']},
author_email="xubigshu@gmail.com",
requires=['tornado', 'futures'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
scripts=[],
install_requires=[
'futures',
],
)