[Checkins] SVN: z3c.evalexception/trunk/setup.py Update package metadata for release

Philipp von Weitershausen philikon at philikon.de
Thu Aug 23 14:29:40 EDT 2007


Log message for revision 79162:
  Update package metadata for release
  

Changed:
  U   z3c.evalexception/trunk/setup.py

-=-
Modified: z3c.evalexception/trunk/setup.py
===================================================================
--- z3c.evalexception/trunk/setup.py	2007-08-23 18:29:18 UTC (rev 79161)
+++ z3c.evalexception/trunk/setup.py	2007-08-23 18:29:39 UTC (rev 79162)
@@ -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 at 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
       """
       )



More information about the Checkins mailing list