[Checkins] SVN: zope.httpform/trunk/ fixed package metadata

Shane Hathaway shane at hathawaymix.org
Sat Feb 7 19:10:25 EST 2009


Log message for revision 96220:
  fixed package metadata

Changed:
  U   zope.httpform/trunk/CHANGES.txt
  U   zope.httpform/trunk/setup.py

-=-
Modified: zope.httpform/trunk/CHANGES.txt
===================================================================
--- zope.httpform/trunk/CHANGES.txt	2009-02-07 15:50:39 UTC (rev 96219)
+++ zope.httpform/trunk/CHANGES.txt	2009-02-08 00:10:24 UTC (rev 96220)
@@ -1,9 +1,14 @@
 CHANGES
 =======
 
-Version 1.0.1 (unreleased)
+Version 1.0.2 (unreleased)
 --------------------------
 
+- ...
+
+Version 1.0.1 (2009-02-07)
+--------------------------
+
 - Fixed some misleading documentation.
 
 - Relaxed the requirement for REQUEST_METHOD because the zope.publisher

Modified: zope.httpform/trunk/setup.py
===================================================================
--- zope.httpform/trunk/setup.py	2009-02-07 15:50:39 UTC (rev 96219)
+++ zope.httpform/trunk/setup.py	2009-02-08 00:10:24 UTC (rev 96220)
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""HTTP Form Data Parser setup
+"""zope.httpform setup
 
 $Id: $
 """
@@ -37,14 +37,19 @@
     long_description=long_description,
 
     # Get more from http://www.python.org/pypi?%3Aaction=list_classifiers
-    classifiers=['Programming Language :: Python',
-                'Environment :: Web Environment',
-                'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
-                'Framework :: Zope3',
-                ],
+    classifiers=[
+        "Development Status :: 4 - Beta",
+        "Intended Audience :: Developers",
+        'Programming Language :: Python',
+        'Environment :: Web Environment',
+        'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
+        'Framework :: Zope3',
+        ],
 
     packages=find_packages('src'),
     package_dir={'': 'src'},
+    namespace_packages=['zope'],
+    zip_safe=False,
     install_requires=[
         'setuptools',
         'zope.interface',



More information about the Checkins mailing list