forked from seomoz/qless-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
executable file
·35 lines (33 loc) · 1.03 KB
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
31
32
33
34
35
#! /usr/bin/env python
from distutils.core import setup
setup(
name='qless-py',
version='0.10.1',
description='Redis-based Queue Management',
long_description='''
Redis-based queue management, with heartbeating, job tracking,
stats, notifications, and a whole lot more.''',
url='https://github.com/seomoz/qless-py',
author='Dan Lecocq',
author_email='dan@seomoz.org',
license="MIT License",
keywords='redis, qless, job',
packages=['qless', 'qless.workers'],
package_dir={
'qless': 'qless',
'qless.workers': 'qless/workers'},
package_data={'qless': ['qless-core/*.lua']},
include_package_data=True,
scripts=['bin/qless-py-worker'],
extras_require={
'ps': ['setproctitle']
},
install_requires=[
'argparse', 'hiredis', 'redis', 'psutil', 'simplejson'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
]
)