-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 753 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 753 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
from dreque import __version__ as version
dependencies = ["redis"]
setup(
name = 'dreque',
version = version,
description = 'Persistent job queueing library using Redis inspired by Resque',
author = 'Samuel Stauffer',
author_email = 'samuel@lefora.com',
url = 'http://github.com/samuel/dreque',
packages = ['dreque'],
requires = dependencies,
install_requires = dependencies,
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)