We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab6091 commit 9f0db89Copy full SHA for 9f0db89
.gitignore
@@ -1,3 +1,4 @@
1
*.pyc
2
MANIFEST
3
-/dist/
+/dist/
4
+/django_debug_panel.egg-info/
setup.py
@@ -1,12 +1,13 @@
# coding: utf-8
-from distutils.core import setup
+from setuptools import setup
setup(
5
name='django-debug-panel',
6
- version='0.5.6',
+ version='0.5.8',
7
author='Joël Billaud',
8
author_email='jbillaud@gmail.com',
9
packages=['debug_panel'],
10
+ include_package_data=True,
11
url='https://github.com/recamshak/django-debug-panel',
12
license='BSD',
13
description='django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses',
0 commit comments