-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (30 loc) · 999 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
24
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
from celerymon import get_version
setup(
name='django-celery-mon',
version=get_version(),
description='App for monitoring Celery workers',
keywords="django celery monitoring",
long_description=open('README.rst').read(),
author="GoTLiuM InSPiRiT",
author_email='[email protected]',
url='http://github.com/gotlium/django-celery-mon/',
packages=find_packages(exclude=['demo']),
package_data={'celerymon': [
'locale/*/LC_MESSAGES/django.*',
]},
include_package_data=True,
install_requires=[
'setuptools',
],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)