forked from madirey/django-celery-admin-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·23 lines (22 loc) · 804 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
from setuptools import setup, find_packages
setup(
name='django-celery-admin-ext',
version='1.0-mc1',
description='A django application that lets you kick off periodic celery tasks from the admin.',
long_description=open('README.md').read(),
author='Matt Caldwell',
author_email='mcaldwel@ngs.org',
url='http://github.com/mattcaldwell/django-celery-admin-ext',
packages=find_packages(exclude=[]),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
)