-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
50 lines (44 loc) · 1.25 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'django_atomic_celery',
]
requires = []
tests_require = [
'flake8',
'django-nose',
'rednose',
]
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='django-atomic-celery',
version='2.0.0',
description='Atomic transaction aware Celery tasks for Django 1.6+',
long_description=readme,
author='Nick Bruun',
author_email='nick@bruun.co',
maintainer='Adam Johnson',
maintainer_email='me@adamj.eu',
url='https://github.com/adamchainz/django_atomic_celery',
packages=packages,
package_data={'': ['LICENSE']},
package_dir={'django_atomic_celery': 'django_atomic_celery'},
include_package_data=True,
tests_require=tests_require,
install_requires=requires,
license=open('LICENSE').read(),
zip_safe=True,
classifiers=(
'Development Status :: 7 - Inactive',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)