File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ [egg_info]
2+ tag_svn_revision = false
Original file line number Diff line number Diff line change 1+ from setuptools import setup , find_packages
2+ import os
3+
4+ version = '0.1'
5+
6+ setup (name = 'debug_toolbar' ,
7+ version = version ,
8+ description = "A configurable set of panels that display various debug information about the current request/response." ,
9+ long_description = open ("README.rst" ).read (),
10+ # Get more strings from http://www.python.org/pypi?:action=list_classifiers
11+ classifiers = [
12+ "Programming Language :: Python" ,
13+ "Topic :: Software Development :: Libraries :: Python Modules" ,
14+ "Development Status :: 4 - Beta" ,
15+ "Environment :: Plugins" ,
16+ "Intended Audience :: Developers" ,
17+ "License :: OSI Approved :: BSD License" ,
18+ "Framework :: Django" ,
19+ ],
20+ keywords = '' ,
21+ author = 'Rob Hudson' ,
22+ 23+ url = 'http://rob.cogit8.org/blog/2008/Sep/19/introducing-django-debug-toolbar/' ,
24+ license = 'BSD' ,
25+ packages = find_packages (exclude = ['ez_setup' ]),
26+ namespace_packages = [],
27+ include_package_data = True ,
28+ zip_safe = False ,
29+ install_requires = [
30+ 'setuptools' ,
31+ ],
32+ entry_points = """
33+ """ ,
34+ )
You can’t perform that action at this time.
0 commit comments