setup.py 554 B

123456789101112131415161718
  1. # coding: utf-8
  2. from setuptools import setup
  3. setup(
  4. name='django-debug-panel',
  5. version='0.8.3',
  6. author=u'Joël Billaud',
  7. author_email='jbillaud@gmail.com',
  8. packages=['debug_panel'],
  9. include_package_data=True,
  10. url='https://github.com/recamshak/django-debug-panel',
  11. license='BSD',
  12. description='django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses',
  13. long_description=open('README.rst').read(),
  14. install_requires=[
  15. "django-debug-toolbar >= 1.0"
  16. ],
  17. )