setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. from setuptools import setup, find_packages
  2. from io import open
  3. setup(
  4. name='django-debug-toolbar',
  5. version='1.3.2',
  6. description='A configurable set of panels that display various debug '
  7. 'information about the current request/response.',
  8. long_description=open('README.rst', encoding='utf-8').read(),
  9. author='Rob Hudson',
  10. author_email='rob@cogit8.org',
  11. url='https://github.com/django-debug-toolbar/django-debug-toolbar',
  12. download_url='https://pypi.python.org/pypi/django-debug-toolbar',
  13. license='BSD',
  14. packages=find_packages(exclude=('tests.*', 'tests', 'example')),
  15. install_requires=[
  16. 'django>=1.4.2',
  17. 'sqlparse',
  18. ],
  19. include_package_data=True,
  20. zip_safe=False, # because we're including static files
  21. classifiers=[
  22. 'Development Status :: 5 - Production/Stable',
  23. 'Environment :: Web Environment',
  24. 'Framework :: Django',
  25. 'Intended Audience :: Developers',
  26. 'License :: OSI Approved :: BSD License',
  27. 'Operating System :: OS Independent',
  28. 'Programming Language :: Python',
  29. 'Programming Language :: Python :: 2',
  30. 'Programming Language :: Python :: 2.6',
  31. 'Programming Language :: Python :: 2.7',
  32. 'Programming Language :: Python :: 3',
  33. 'Programming Language :: Python :: 3.2',
  34. 'Programming Language :: Python :: 3.3',
  35. 'Programming Language :: Python :: 3.4',
  36. 'Topic :: Software Development :: Libraries :: Python Modules',
  37. ],
  38. )