-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 916 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
setup(
name='tx-redis-poller',
version='1.0',
author='SweetIQ',
author_email='rob@sweetiq.com',
description=('A little Twisted-based tool to poll a Redis queue periodically for messages.'),
packages=find_packages(),
install_requires=[
'Twisted==14.0.0',
'txredis==2.3'
],
url='http://github.com/SweetIQ/redis-poller',
keywords=["redis", "polling", "twisted"],
package_data={"tx-redis-poller": ["requirements.txt"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers"
],
long_description="""\
Poller for Redis
---------------------------------
Event-driven handler for Redis - listen on a Redis queue for messages.
""",
)