-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 975 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
package_data = {
'status_cats': [ 'templates/status_cats/*.html' ],
}
setup(
name = 'django-status-cats',
packages = ['status_cats'],
version = '0.1.1',
package_data = package_data,
description = 'Django middleware for adding HTTP status cats to your responses ',
author = 'Andromeda Yelton',
author_email = '[email protected]',
url = 'https://github.com/thatandromeda/django-status-cats',
download_url = 'https://github.com/thatandromeda/django-status-cats/tarball/0.1',
license = 'CC0',
keywords='django middleware cats',
install_requires=['django'],
classifiers = [
'Framework :: Django',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Programming Language :: Python :: 2',
],
)