[Checkins] SVN: Acquisition/trunk/ prepare

Hano Schlichting cvs-admin at zope.org
Sun Feb 24 13:41:20 UTC 2013


Log message for revision 129733:
  prepare

Changed:
  U   Acquisition/trunk/CHANGES.txt
  U   Acquisition/trunk/setup.py

-=-
Modified: Acquisition/trunk/CHANGES.txt
===================================================================
--- Acquisition/trunk/CHANGES.txt	2013-02-24 13:39:13 UTC (rev 129732)
+++ Acquisition/trunk/CHANGES.txt	2013-02-24 13:41:20 UTC (rev 129733)
@@ -1,9 +1,10 @@
 Changelog
 =========
 
-4.0 (unreleased)
+4.0 (2013-02-24)
 ----------------
 
+- Added trove classifiers to project metadata.
 
 4.0a1 (2011-12-13)
 ------------------

Modified: Acquisition/trunk/setup.py
===================================================================
--- Acquisition/trunk/setup.py	2013-02-24 13:39:13 UTC (rev 129732)
+++ Acquisition/trunk/setup.py	2013-02-24 13:41:20 UTC (rev 129733)
@@ -16,41 +16,41 @@
 import os
 from setuptools import setup, find_packages, Extension
 
-setup(name='Acquisition',
-      version = '4.0dev',
-      url='http://pypi.python.org/pypi/Acquisition',
-      license='ZPL 2.1',
-      description="Acquisition is a mechanism that allows objects to obtain "
-      "attributes from the containment hierarchy they're in.",
-      author='Zope Foundation and Contributors',
-      author_email='zope-dev at zope.org',
-      long_description=open(
-          os.path.join('src', 'Acquisition', 'README.txt')).read() + '\n' +
-          open('CHANGES.txt').read(),
-
-      packages=find_packages('src'),
-      package_dir={'': 'src'},
-      classifiers=[
-          "Development Status :: 6 - Mature",
-          "Environment :: Web Environment",
-          "Framework :: Zope2",
-          "License :: OSI Approved :: Zope Public License",
-          "Operating System :: OS Independent",
-          "Programming Language :: Python",
-          "Programming Language :: Python :: 2 :: Only",
-          "Programming Language :: Python :: 2.6",
-          "Programming Language :: Python :: 2.7",
-          "Programming Language :: Python :: Implementation :: CPython",
-      ],
-      ext_modules=[Extension("Acquisition._Acquisition",
-                             [os.path.join('src', 'Acquisition',
-                                           '_Acquisition.c')],
-                             include_dirs=['include', 'src']),
-                   ],
-      install_requires=[
+setup(
+    name='Acquisition',
+    version='4.0',
+    url='http://pypi.python.org/pypi/Acquisition',
+    license='ZPL 2.1',
+    description="Acquisition is a mechanism that allows objects to obtain "
+    "attributes from the containment hierarchy they're in.",
+    author='Zope Foundation and Contributors',
+    author_email='zope-dev at zope.org',
+    long_description=open(
+        os.path.join('src', 'Acquisition', 'README.txt')).read() + '\n' +
+        open('CHANGES.txt').read(),
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    classifiers=[
+        "Development Status :: 6 - Mature",
+        "Environment :: Web Environment",
+        "Framework :: Zope2",
+        "License :: OSI Approved :: Zope Public License",
+        "Operating System :: OS Independent",
+        "Programming Language :: Python",
+        "Programming Language :: Python :: 2 :: Only",
+        "Programming Language :: Python :: 2.6",
+        "Programming Language :: Python :: 2.7",
+        "Programming Language :: Python :: Implementation :: CPython",
+    ],
+    ext_modules=[Extension("Acquisition._Acquisition",
+                           [os.path.join('src', 'Acquisition',
+                                         '_Acquisition.c')],
+                           include_dirs=['include', 'src']),
+                 ],
+    install_requires=[
         'ExtensionClass >= 4.0a1',
         'zope.interface',
-        ],
-      include_package_data=True,
-      zip_safe=False,
-      )
+    ],
+    include_package_data=True,
+    zip_safe=False,
+)



More information about the checkins mailing list