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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# Don't force people to install setuptools unless
# we have to.
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
import sys
try:
# Work around bug in Python 2.6, TypeError on shutdown.
import multiprocessing
except ImportError:
pass
classifiers = """\
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Development Status :: 4 - Beta
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Operating System :: MacOS :: MacOS X
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
"""
description = 'Synchronization primitives for Tornado coroutines.'
long_description = open("README.rst").read()
major, minor = sys.version_info[:2]
packages = ['toro']
if "test" in sys.argv:
packages.append('test')
setup(name='toro',
version='1.0.1',
packages=packages,
description=description,
long_description=long_description,
author='A. Jesse Jiryu Davis',
author_email='jesse@emptysquare.net',
url='http://github.com/ajdavis/toro/',
install_requires=['tornado >= 3'],
license='http://www.apache.org/licenses/LICENSE-2.0',
classifiers=filter(None, classifiers.split('\n')),
keywords='tornado coroutines semaphore mutex queue asynchronous',
test_suite='test'
)
|