-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.05 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
import sys
from setuptools import setup
from sigasync import __version__
requires=['configobj']
if sys.version_info < (2, 6):
requires.append('multiprocessing')
setup(
name='spooler',
version=__version__,
description='Simple task queue using the filesystem',
long_description="""Task queue that uses a filesystem backend. It comes with an interface to Django signals, and can be easily extended.""",
author='Woome',
author_email='[email protected]',
license = "GNU GPL v3",
url = "http://github.com/woome/spooler",
download_url = "http://github.com/woome/spooler/tarball/master",
packages=['sigasync'],
install_requires=requires,
platforms=['any'],
keywords=['asynchronous', 'queue', 'task queue'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
],
package_data={'sigasync': ['configspec.ini']},
)