forked from mrjoes/tornadio2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 830 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
31
32
33
34
35
36
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
license = open('LICENSE').read()
except:
license = None
try:
readme = open('README.rst').read()
except:
readme = None
setup(
name='TornadIO2',
version='0.0.1',
author='Serge S. Koval',
author_email='serge.koval@gmail.com',
packages=['tornadio2'],
scripts=[],
url='http://github.com/MrJoes/tornadio2/',
license=license,
description='Socket.io 0.7+ server implementation on top of Tornado framework',
long_description=readme,
requires=['simplejson', 'tornado'],
install_requires=[
'simplejson >= 2.1.0',
'tornado >= 2.0.0'
]
)