forked from mqingyn/torngas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1008 Bytes
/
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
from setuptools import setup, find_packages
import torngas
setup(
name="torngas",
version=torngas.__version__,
description="torngas based on tornado",
long_description="torngas is based on tornado,django like web framework.",
keywords='python torngas django tornado',
author="mqingyn",
url="https://github.com/mqingyn/torngas",
license="BSD",
packages=find_packages(),
package_data={'torngas': ['resource/exception.html']},
author_email="[email protected]",
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',
],
)