[Checkins] SVN: zope.structuredtext/trunk/ Prepare for 3.4.0 release

Baiju M baiju.m.mail at gmail.com
Sun Sep 2 02:21:12 EDT 2007


Log message for revision 79433:
  Prepare for 3.4.0 release
    - description and long-description updated
    - remove setup.cfg
  

Changed:
  U   zope.structuredtext/trunk/CHANGES.txt
  A   zope.structuredtext/trunk/README.txt
  D   zope.structuredtext/trunk/setup.cfg
  U   zope.structuredtext/trunk/setup.py

-=-
Modified: zope.structuredtext/trunk/CHANGES.txt
===================================================================
--- zope.structuredtext/trunk/CHANGES.txt	2007-09-01 23:52:33 UTC (rev 79432)
+++ zope.structuredtext/trunk/CHANGES.txt	2007-09-02 06:21:10 UTC (rev 79433)
@@ -1,16 +1,21 @@
-zope.structuredtext Package Changelog
-==========================
+Change History
+==============
 
-zope.structuredtext version 3.2.0 (2006/01/05)
------------------------------------
+3.4.0 (2007/09/01)
+------------------
 
+Public release for completeness of Zope 3.4
+
+3.2.0 (2006/01/05)
+------------------
+
 Corresponds to the verison of the zope.structuredtext package shipped
 as part of the Zope 3.2.0 release.
 
 Only coding style / documentation changes.
 
-zope.structuredtext version 3.0.0 (2004/11/07)
------------------------------------
+3.0.0 (2004/11/07)
+------------------
 
 Corresponds to the verison of the zope.structuredtext package shipped
 as part of the Zope X3.0.0 release.

Added: zope.structuredtext/trunk/README.txt
===================================================================
--- zope.structuredtext/trunk/README.txt	                        (rev 0)
+++ zope.structuredtext/trunk/README.txt	2007-09-02 06:21:10 UTC (rev 79433)
@@ -0,0 +1,4 @@
+StructuredText
+**************
+
+.. contents::


Property changes on: zope.structuredtext/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Deleted: zope.structuredtext/trunk/setup.cfg
===================================================================
--- zope.structuredtext/trunk/setup.cfg	2007-09-01 23:52:33 UTC (rev 79432)
+++ zope.structuredtext/trunk/setup.cfg	2007-09-02 06:21:10 UTC (rev 79433)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.structuredtext/trunk/setup.py
===================================================================
--- zope.structuredtext/trunk/setup.py	2007-09-01 23:52:33 UTC (rev 79432)
+++ zope.structuredtext/trunk/setup.py	2007-09-02 06:21:10 UTC (rev 79433)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -20,21 +20,46 @@
 
 from setuptools import setup, find_packages
 
-setup(name='zope.structuredtext',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.structuredtext',
-      license='ZPL 2.1',
-      description='XXX',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description='',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Detailed Documentation\n'
+    '**********************\n'
+    + '\n' +
+    read('src', 'zope', 'structuredtext', 'STNG.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
 
-      namespace_packages=['zope',],
-      install_requires = ['setuptools'],
-      include_package_data = True,
+setup(
+    name='zope.structuredtext',
+    version = '3.4.0',
+    url='http://pypi.python.org/pypi/zope.structuredtext',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    license='ZPL 2.1',
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Topic :: Software Development',
+        ],
+    description='StructuredText parser',
+    long_description=long_description,
 
-      zip_safe = False,
-      )
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    include_package_data=True,
+    install_requires=['setuptools'],
+    zip_safe=False,
+    )



More information about the Checkins mailing list