SVN: zope.formlib/branches/4.0/setup.py updated future version + added missing classifiers

Michael Howitz <[email protected]> Mon, 19 Mar 2012 03:36:36 -0400 (EDT)
Newsgroups gmane.comp.web.zope.zope3.cvs
Message-ID <[email protected]>
Log message for revision 124639:
  updated future version + added missing classifiers

Changed:
  U   zope.formlib/branches/4.0/setup.py

-=-
Modified: zope.formlib/branches/4.0/setup.py
===================================================================
--- zope.formlib/branches/4.0/setup.py	2012-03-19 07:31:59 UTC (rev 124638)
+++ zope.formlib/branches/4.0/setup.py	2012-03-19 07:36:33 UTC (rev 124639)
@@ -24,7 +24,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version = '4.0.6'
+version = '4.0.7dev'
 
 setup(name='zope.formlib',
       version=version,
@@ -33,6 +33,25 @@
       description='Form generation and validation library for Zope',
       author='Zope Foundation and Contributors',
       author_email='[email protected]',
+      classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Framework :: Zope3',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'License :: OSI Approved',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python :: 2 :: Only',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.4',
+        'Programming Language :: Python :: 2.5',
+        'Programming Language :: Python :: 2.6',
+        'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python',
+        'Topic :: Internet :: WWW/HTTP',
+        ],
+
       long_description=(read('README.txt')
                         + '\n\n' +
                         read('src', 'zope', 'formlib', 'form.txt')