[Checkins] SVN: zope.event/trunk/setup.py Trove classifiers, mostly again to mark it as Python 3.1 compatible.

Lennart Regebro regebro at gmail.com
Mon Apr 19 03:27:06 EDT 2010


Log message for revision 111055:
  Trove classifiers, mostly again to mark it as Python 3.1 compatible.
  

Changed:
  U   zope.event/trunk/setup.py

-=-
Modified: zope.event/trunk/setup.py
===================================================================
--- zope.event/trunk/setup.py	2010-04-19 07:10:48 UTC (rev 111054)
+++ zope.event/trunk/setup.py	2010-04-19 07:27:06 UTC (rev 111055)
@@ -51,12 +51,24 @@
         + '\n' +
         read('CHANGES.txt')
         ),
-      packages=find_packages('src'),
-      package_dir={'': 'src'},
-      namespace_packages=['zope',],
-      include_package_data=True,
-      install_requires=['setuptools'],
-      zip_safe=False,
-      test_suite='zope.event.tests.test_suite',
-      **extra
-      )
+    classifiers=[
+        "Development Status :: 5 - Production/Stable",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
+        "Operating System :: OS Independent",
+        "Programming Language :: Python :: 2.4",
+        "Programming Language :: Python :: 2.5",
+        "Programming Language :: Python :: 2.6",
+        "Programming Language :: Python :: 3.1",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        ],
+
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    include_package_data=True,
+    install_requires=['setuptools'],
+    zip_safe=False,
+    test_suite='zope.event.tests.test_suite',
+    **extra
+    )



More information about the checkins mailing list