-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (43 loc) · 1.48 KB
/
setup.py
File metadata and controls
49 lines (43 loc) · 1.48 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='django-celery-extensions',
long_description=readme,
long_description_content_type='text/markdown',
version='0.0.38',
description="Django celery extensions library.",
keywords='django, celery',
author='Lubos Matl',
author_email='matllubos@gmail.com',
url='https://github.com/druids/django-celery-extensions',
license='MIT',
package_dir={'django_celery_extensions': 'django_celery_extensions'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: Czech',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'django>=2.2.14, <4.0',
'import_string>=0.1.0',
'celery>=5.2, <5.3'
],
entry_points={'console_scripts': [
'celeryautoreload=django_celery_extensions.bin.celeryautoreload:celery_autoreload',
]},
zip_safe=False
)