-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (53 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os
import codecs
from setuptools import setup
__version__ = '0.1'
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
install_requirements = [
'celery==3.1.23',
'django-celery==3.1.17',
'Django==1.9.5',
]
test_requirements = [
'py==1.4.31',
'pyflakes==1.1.0',
'pytest==2.9.1',
'pytest-django==2.9.1',
'pytest-flakes==1.0.1',
'pytest-pep8==1.0.6',
'mock==1.0.1',
'pep8==1.7.0',
]
setup(
name='djcelery-siglock',
version=__version__,
description=(
'Djcelery-siglock is Celery task decorator to ensure'
'that a task is onlyexecuted one at a time.'
),
long_description=read('README.md'),
author='Carlo Smouter',
author_email='lockwooddev@gmail.com',
url='https://github.com/lockwooddev/djcelery-siglock',
install_requires=install_requirements,
extras_require={
'tests': test_requirements,
},
license='MIT',
keywords=['celery', 'django', 'task', 'lock'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
],
packages=[
'siglock',
'siglock.tests',
],
)