-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
43 lines (33 loc) · 905 Bytes
/
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
"""
rq-gevent-worker
================
Implement a new worker based on gevent
Install
-------
.. code-block:: bash
$ pip install rq-gevent-worker
Usage
-----
.. code-block:: bash
$ rqgeventworker -h
$ export PYTHONPATH=<your project import path>:$PYTHONPATH; rqgeventworker
For more information: https://github.com/zhangliyong/rq-gevent-worker
"""
from setuptools import setup
setup(
name='rq-gevent-worker',
version='0.1.5',
py_modules=['rq_gevent_worker'],
entry_points={
'console_scripts': [
'rqgeventworker=rq_gevent_worker:main',
]
},
url='https://github.com/zhangliyong/rq-gevent-worker',
license='BSD',
author='Lyon Zhang',
author_email='[email protected]',
description='Implement a new worker based on gevent',
long_description=__doc__,
install_requires=['rq >= 0.4.6', 'gevent >= 1.0'],
)