-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (51 loc) · 1.4 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import find_packages
from setuptools import setup
import tyron
description="""
Gevent redis/pubsub event notifier written in flask and gevent
"""
setup(
name="tyron",
version=tyron.__version__,
url='https://github.com/tbarbugli/tyron',
license='BSD',
platforms=['OS Independent'],
description = description.strip(),
author = 'Tommaso Barbugli',
author_email = '[email protected]',
maintainer = 'Tommaso Barbugli',
maintainer_email = '[email protected]',
packages=find_packages(),
tests_require=[
'unittest2',
'mock',
],
test_suite='tests',
dependency_links = [
'https://gevent.googlecode.com/files/gevent-1.0rc2.tar.gz#egg=gevent-1.0.rc2'
],
install_requires = [
'Flask==0.9',
'Jinja2==2.6',
'Werkzeug==0.8.3',
'greenlet==0.4.0',
'gunicorn==0.17.2',
'redis==2.7.2',
'gevent >= 1.0rc2'
],
entry_points={
'console_scripts': [
'tyron = tyron.tyron:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
]
)