2011-11-14 11:16:28 +00:00
|
|
|
"""
|
|
|
|
rq is a simple, lightweight, library for creating background jobs, and
|
|
|
|
processing them.
|
|
|
|
"""
|
2011-11-28 11:10:15 +00:00
|
|
|
import os
|
2012-05-15 06:37:10 +00:00
|
|
|
from setuptools import setup, find_packages
|
2011-11-28 11:10:15 +00:00
|
|
|
|
2012-03-28 20:15:51 +00:00
|
|
|
|
2011-11-28 11:10:15 +00:00
|
|
|
def get_version():
|
|
|
|
basedir = os.path.dirname(__file__)
|
2017-08-31 08:45:26 +00:00
|
|
|
try:
|
|
|
|
with open(os.path.join(basedir, 'rq/version.py')) as f:
|
|
|
|
locals = {}
|
|
|
|
exec(f.read(), locals)
|
|
|
|
return locals['VERSION']
|
|
|
|
except FileNotFoundError:
|
|
|
|
raise RuntimeError('No version info found.')
|
2011-11-14 11:16:28 +00:00
|
|
|
|
2012-03-28 20:15:51 +00:00
|
|
|
|
2020-06-29 06:29:28 +00:00
|
|
|
def get_requirements():
|
|
|
|
basedir = os.path.dirname(__file__)
|
|
|
|
try:
|
|
|
|
with open(os.path.join(basedir, 'requirements.txt')) as f:
|
|
|
|
return f.readlines()
|
|
|
|
except FileNotFoundError:
|
|
|
|
raise RuntimeError('No requirements info found.')
|
|
|
|
|
|
|
|
|
2011-11-14 11:16:28 +00:00
|
|
|
setup(
|
|
|
|
name='rq',
|
2011-11-28 11:10:15 +00:00
|
|
|
version=get_version(),
|
2011-11-14 11:16:28 +00:00
|
|
|
url='https://github.com/nvie/rq/',
|
|
|
|
license='BSD',
|
|
|
|
author='Vincent Driessen',
|
|
|
|
author_email='vincent@3rdcloud.com',
|
2011-11-28 13:07:12 +00:00
|
|
|
description='RQ is a simple, lightweight, library for creating background '
|
2011-11-14 11:16:28 +00:00
|
|
|
'jobs, and processing them.',
|
|
|
|
long_description=__doc__,
|
2020-09-10 01:26:26 +00:00
|
|
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
2011-11-14 11:16:28 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
platforms='any',
|
2020-06-29 06:29:28 +00:00
|
|
|
install_requires=get_requirements(),
|
2020-07-07 00:26:12 +00:00
|
|
|
python_requires='>=3.5',
|
2014-09-06 09:10:55 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'rq = rq.cli:main',
|
|
|
|
|
|
|
|
# NOTE: rqworker/rqinfo are kept for backward-compatibility,
|
|
|
|
# remove eventually (TODO)
|
|
|
|
'rqinfo = rq.cli:info',
|
2014-09-12 03:26:35 +00:00
|
|
|
'rqworker = rq.cli:worker',
|
2014-09-06 09:10:55 +00:00
|
|
|
],
|
|
|
|
},
|
2011-11-14 11:16:28 +00:00
|
|
|
classifiers=[
|
|
|
|
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
2017-08-31 08:45:26 +00:00
|
|
|
# 'Development Status :: 1 - Planning',
|
|
|
|
# 'Development Status :: 2 - Pre-Alpha',
|
|
|
|
# 'Development Status :: 3 - Alpha',
|
|
|
|
# 'Development Status :: 4 - Beta',
|
2015-06-01 04:00:26 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2017-08-31 08:45:26 +00:00
|
|
|
# 'Development Status :: 6 - Mature',
|
|
|
|
# 'Development Status :: 7 - Inactive',
|
2011-11-14 11:16:28 +00:00
|
|
|
'Intended Audience :: Developers',
|
2011-11-28 11:09:36 +00:00
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: System Administrators',
|
2011-11-14 11:16:28 +00:00
|
|
|
'License :: OSI Approved :: BSD License',
|
2011-11-28 11:09:36 +00:00
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Operating System :: Unix',
|
2011-11-14 11:16:28 +00:00
|
|
|
'Programming Language :: Python',
|
2014-03-10 22:16:43 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2017-07-31 06:48:38 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-07-07 01:50:33 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2020-01-04 03:17:34 +00:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2021-05-17 07:00:00 +00:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2012-03-28 20:15:51 +00:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2011-11-28 11:09:36 +00:00
|
|
|
'Topic :: Internet',
|
|
|
|
'Topic :: Scientific/Engineering',
|
|
|
|
'Topic :: System :: Distributed Computing',
|
|
|
|
'Topic :: System :: Systems Administration',
|
|
|
|
'Topic :: System :: Monitoring',
|
|
|
|
|
2011-11-14 11:16:28 +00:00
|
|
|
]
|
|
|
|
)
|