-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (35 loc) · 1.34 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
#!/usr/bin/env python
import os
# Utility function to read the README file.
# Credit: http://pypi.python.org/pypi/an_example_pypi_project
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
d = dict(name='txRDQ',
version='0.2.14',
provides=['txrdq'],
maintainer='Fluidinfo Inc.',
maintainer_email='[email protected]',
url='https://launchpad.net/txrdq',
download_url='https://code.launchpad.net/txrdq',
packages=['txrdq', 'txrdq.test'],
keywords=['twisted dispatch job queue'],
classifiers=[
'Programming Language :: Python',
'Framework :: Twisted',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
description=('A Twisted class for queueing and dispatching jobs in '
'a controlled manner.'),
long_description=read('README'))
try:
from setuptools import setup
_ = setup # Keeps pyflakes from complaining.
except ImportError:
from distutils.core import setup
else:
d['install_requires'] = ['Twisted']
setup(**d)