Skip to content

Commit 302bb34

Browse files
author
Dan Fairs
committed
Initial setup.cfg and setup.py
1 parent 0740787 commit 302bb34

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[egg_info]
2+
tag_svn_revision = false

setup.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
author_email='[email protected]',
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+
)

0 commit comments

Comments
 (0)