[Checkins] SVN: zope.minmax/trunk/ Cleanup.

Zvezdan Petkovic zvezdan at zope.com
Wed Sep 9 08:57:43 EDT 2009


Log message for revision 103684:
  Cleanup.
  
  - consistent indentation,
  - sort list entries,
  - one entry per line for easy addition/removal
  - prepare for a minor minor release to fix a PyPI page (link/email)
  
  

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

-=-
Modified: zope.minmax/trunk/CHANGES.txt
===================================================================
--- zope.minmax/trunk/CHANGES.txt	2009-09-09 12:17:02 UTC (rev 103683)
+++ zope.minmax/trunk/CHANGES.txt	2009-09-09 12:57:43 UTC (rev 103684)
@@ -5,23 +5,34 @@
 1.2.0 (unreleased)
 ------------------
 
+- Nothing yet.
+
+
+1.1.1 (2009-09-09)
+------------------
+
 - Fixed homepage link and mailing list address.
+- Cleaned up.
 
+
 1.1 (2007-10-02)
 ----------------
 
 - Refactored package setup.
 
+
 1.0 (2007-09-28)
 ----------------
 
 - No further changes since 1.0b2
 
+
 1.0b2 (2007-07-09)
 ------------------
 
 - Removed ``_p_independent`` method from ``AbstractValue`` class.
 
+
 1.0b1 (2007-07-03)
 ------------------
 

Modified: zope.minmax/trunk/setup.py
===================================================================
--- zope.minmax/trunk/setup.py	2009-09-09 12:17:02 UTC (rev 103683)
+++ zope.minmax/trunk/setup.py	2009-09-09 12:57:43 UTC (rev 103684)
@@ -20,44 +20,51 @@
     text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
     return text
 
-setup(name='zope.minmax',
-      version = '1.2.0dev',
-      author='Zope Corporation and Contributors',
-      author_email='zope-dev at zope.org',
-      description=("Homogeneous values favoring maximum or minimum for ZODB "
-                   "conflict resolution"),
-      long_description=(
-          read('README.txt')
-          + '\n\n' +
-          'Detailed Documentation\n' +
-          '----------------------'
-          + '\n\n' +
-          read('src', 'zope', 'minmax', 'minmax.txt')
-          + '\n\n' +
-          read('CHANGES.txt')
-          ),
-      license='ZPL 2.1',
-      keywords=('zope3 zope zodb'),
-      classifiers = [
-          'Development Status :: 5 - Production/Stable',
-          'Environment :: Web Environment',
-          'Intended Audience :: Developers',
-          'License :: OSI Approved :: Zope Public License',
-          'Programming Language :: Python',
-          'Natural Language :: English',
-          'Operating System :: OS Independent',
-          'Topic :: Internet :: WWW/HTTP',
-          'Framework :: Zope3'],
-      url='http://pypi.python.org/pypi/zope.minmax/',
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope',],
-      extras_require=dict(
-          test=['zope.testing']),
-      install_requires=['setuptools',
-                        'zope.interface',
-                        'ZODB3',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )
+setup(
+    name='zope.minmax',
+    version='1.2.0dev',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    description=(
+        "Homogeneous values favoring maximum or minimum for ZODB "
+        "conflict resolution"
+        ),
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n' +
+        '----------------------'
+        + '\n\n' +
+        read('src', 'zope', 'minmax', 'minmax.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license='ZPL 2.1',
+    keywords=('zope3 zope zodb minimum maximum conflict resolution'),
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Framework :: Zope3',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development :: Libraries :: Python Modules',
+        ],
+    url='http://pypi.python.org/pypi/zope.minmax/',
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    extras_require=dict(
+        test=['zope.testing']
+        ),
+    install_requires=[
+        'setuptools',
+        'ZODB3',
+        'zope.interface',
+        ],
+    include_package_data=True,
+    zip_safe=False,
+    )



More information about the checkins mailing list