forked from kushaldas/retask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.23 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(name='retask',
version='1.0',
description='Task Queue implementation in python',
long_description=(
'Retask is a simple task queue implementation written for '
'human beings. It provides generic solution to create and manage '
'task queues.'
),
author='Kushal Das',
author_email='[email protected]',
maintainer='Kushal Das',
maintainer_email='[email protected]',
license='MIT',
url='https://github.com/kushaldas/retask',
classifiers=[
'Development Status :: 6 - Mature',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Distributed Computing',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages=find_packages(),
data_files=[],
install_requires=[
'redis',
'six'
],
test_suite='tests',
tests_require=[
'mock'
])