diff options
| author | Alex Gaynor | 2009-03-21 12:17:05 -0400 |
|---|---|---|
| committer | Alex Gaynor | 2009-03-21 12:17:05 -0400 |
| commit | 4ffe14db039981d06aa58f3ad3c2b3472824961b (patch) | |
| tree | b6a94348f2c20bfb6c29303227889d70f06c62c3 /setup.py | |
| parent | 0fea345f0d59ed0f17f29e59072f34d7d016abde (diff) | |
| parent | 8c64bb0cc82c6129b4ab14ff4cc80880761680d4 (diff) | |
| download | django-debug-toolbar-4ffe14db039981d06aa58f3ad3c2b3472824961b.tar.bz2 | |
resoled merge conflicts
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1d3f939 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +from setuptools import setup, find_packages + +setup( + name='django-debug-toolbar', + version=__import__('debug_toolbar').__version__, + description='A configurable set of panels that display various debug information about the current request/response.', + long_description=open('README.rst').read(), + # Get more strings from http://www.python.org/pypi?:action=list_classifiers + author='Rob Hudson', + author_email='rob@cogit8.org', + url='http://rob.cogit8.org/blog/2008/Sep/19/introducing-django-debug-toolbar/', + #download_url='http://github.com/robhudson/django-debug-toolbar/tree/master', + license='BSD', + packages=find_packages(exclude=['ez_setup']), + include_package_data=True, + zip_safe=False, # because we're including media that Django needs + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], +) |
