-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
24 lines (22 loc) · 786 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
setup(
name='django-debug-toolbar-redis',
version='0.0.3',
description='Simple debug toolbar panel for Redis',
#long_description=open('README.md').read(),
author='Clement Nodet',
author_email='clement.nodet@gmail.com',
url='http://github.com/clement/django-debug-toolbar-redis',
#license='MIT',
py_modules=['redis_panel'],
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)