-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (28 loc) · 977 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
from setuptools import setup, find_packages
from worq import __version__
setup(
name='WorQ',
version=__version__,
author='Daniel Miller',
author_email='[email protected]',
packages=find_packages(),
url='http://worq.readthedocs.org/',
license='LICENSE.txt',
description='Python task queue',
long_description=open('README.rst').read() \
.replace(':ref:', ''), # HACK replace so pypi doesn't barf on the reST
extras_require={
"redis": "redis >= 2.4",
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)