2011-11-14 11:16:28 +00:00
|
|
|
"""
|
|
|
|
rq is a simple, lightweight, library for creating background jobs, and
|
|
|
|
processing them.
|
|
|
|
"""
|
|
|
|
from setuptools import Command, setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='rq',
|
|
|
|
version='0.1-dev',
|
|
|
|
url='https://github.com/nvie/rq/',
|
|
|
|
license='BSD',
|
|
|
|
author='Vincent Driessen',
|
|
|
|
author_email='vincent@3rdcloud.com',
|
|
|
|
description='rq is a simple, lightweight, library for creating background '
|
|
|
|
'jobs, and processing them.',
|
|
|
|
long_description=__doc__,
|
|
|
|
packages=['rq'],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
platforms='any',
|
2011-11-24 15:57:51 +00:00
|
|
|
install_requires=['redis', 'logbook', 'procname'],
|
2011-11-18 00:44:28 +00:00
|
|
|
scripts=['bin/rqinfo', 'bin/rqworker'],
|
2011-11-14 11:16:28 +00:00
|
|
|
classifiers=[
|
|
|
|
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|