-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
executable file
·65 lines (63 loc) · 1.54 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#! /usr/bin/env python
from setuptools import setup
setup(
name='qless-py',
version='0.11.4',
description='Redis-based Queue Management',
long_description='''
Redis-based queue management, with heartbeating, job tracking,
stats, notifications, and a whole lot more.''',
url='http://github.com/seomoz/qless-py',
author='Dan Lecocq',
author_email='[email protected]',
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',
'decorator',
'hiredis',
'redis',
'six',
'simplejson'
],
tests_requires=[
'coverage',
'mock',
'nose',
'rednose',
'setuptools>=17.1'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
]
)