qw (QueueWorker) - python library for processing a redis list as a work queue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

29 lines
781 B

#!/usr/bin/env python
from setuptools import setup, find_packages
from qw import __version__
setup(
name="qw",
version=__version__,
description="Python Distributed Redis Queue Workers",
author="Brett Langdon",
author_email="brett@blangdon.com",
url="https://github.com/brettlangdon/qw",
packages=find_packages(),
license="MIT",
scripts=["bin/qw-manager", "bin/qw-client"],
install_requires=[
"redis==2.10.3",
"docopt==0.6.2",
],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
]
)