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.
 

24 lines
650 B

#!/usr/bin/env python
from setuptools import setup, findpackages
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=findpackages(),
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
]
)