-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·28 lines (24 loc) · 942 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
#!/usr/bin/env python
from os.path import join, dirname
from distutils.core import setup
setup_dir = dirname(__file__)
exec(compile(open(join(setup_dir, 'greenado', 'version.py')).read(), 'version.py', 'exec'), {}, globals())
setup(
name='greenado',
version=__version__,
description='Greenlet-based coroutines for tornado',
long_description=open(join(setup_dir, 'README.rst')).read(),
author='Dustin Spicuzza',
author_email='[email protected]',
license="Apache 2.0",
url='https://github.com/virtuald/greenado',
packages=['greenado'],
install_requires=['greenlet', 'tornado'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)