-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 884 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
from setuptools import setup, find_packages
setup(
name="rhumba",
version='0.2.0',
url='http://github.com/calston/rhumba',
license='MIT',
description="An asynchronous job queue written in Twisted",
author='Colin Alston',
author_email='[email protected]',
packages=find_packages() + [
"twisted.plugins",
],
package_data={
'twisted.plugins': ['twisted/plugins/rhumba_plugin.py']
},
include_package_data=True,
install_requires=[
'Twisted',
'txredis',
'PyYaml',
'redis'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Distributed Computing',
],
)