Skip to content

Commit

Permalink
Update package metadata for release
Browse files Browse the repository at this point in the history
  • Loading branch information
philikon committed Aug 23, 2007
1 parent 79401de commit 3444bf7
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions setup.py
@@ -1,18 +1,31 @@
from setuptools import setup, find_packages

setup(name='z3c.evalexception',
version = '1.0',
version = '2.0',
license='ZPL 2.1',
description="Paste's interactive exception debugger for Zope 3",
author='Philipp von Weitershausen',
author_email='philipp@weitershausen.de',
long_description=open('README.txt').read(),
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope3',
'Framework :: Paste',
],

packages=find_packages(),
namespace_packages=['z3c'],
install_requires=['setuptools', 'Paste'],
install_requires=['setuptools', 'Paste', 'zope.security'],
zip_safe=True,
entry_points="""
[paste.filter_app_factory]
main = z3c.evalexception:zope_eval_exception
ajax = z3c.evalexception:zope_eval_exception
pdb = z3c.evalexception:post_mortem_debug
"""
)

0 comments on commit 3444bf7

Please sign in to comment.