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

Baiju M baiju.m.mail at gmail.com
Thu Sep 13 06:02:32 EDT 2007


Log message for revision 79610:
  Prepare for 3.4.0 release
  
    - added CHANGES.txt
    - added classifiers
    - beautify setup.py
  

Changed:
  A   zope.contenttype/trunk/CHANGES.txt
  U   zope.contenttype/trunk/README.txt
  U   zope.contenttype/trunk/setup.py

-=-
Added: zope.contenttype/trunk/CHANGES.txt
===================================================================
--- zope.contenttype/trunk/CHANGES.txt	                        (rev 0)
+++ zope.contenttype/trunk/CHANGES.txt	2007-09-13 10:02:32 UTC (rev 79610)
@@ -0,0 +1,8 @@
+Change History
+==============
+
+
+3.4.0 (2007-09-13)
+------------------
+
+First stable release as an independent package.


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

Modified: zope.contenttype/trunk/README.txt
===================================================================
--- zope.contenttype/trunk/README.txt	2007-09-13 09:40:54 UTC (rev 79609)
+++ zope.contenttype/trunk/README.txt	2007-09-13 10:02:32 UTC (rev 79610)
@@ -1,7 +1,6 @@
-zope.contenttype Package Readme
-===============================
+zope.contenttype
+****************
 
-Overview
---------
-
 A utility module for content-type handling.
+
+.. contents::

Modified: zope.contenttype/trunk/setup.py
===================================================================
--- zope.contenttype/trunk/setup.py	2007-09-13 09:40:54 UTC (rev 79609)
+++ zope.contenttype/trunk/setup.py	2007-09-13 10:02:32 UTC (rev 79610)
@@ -20,22 +20,40 @@
 
 from setuptools import setup, find_packages
 
-setup(name='zope.contenttype',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.contenttype',
-      license='ZPL 2.1',
-      description='Zope contenttype',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      long_description="A utility module for content-type handling.",
+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' +
+    'Download\n'
+    '********\n'
+    )
 
-      namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
-      install_requires=[],
-      include_package_data = True,
+setup(
+    name='zope.contenttype',
+    version='3.4.0',
+    url='http://pypi.python.org/pypi/zope.contenttype',
+    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='Zope contenttype',
+    long_description=long_description,
 
-      zip_safe = False,
-      )
+    packages=find_packages('src'),
+    package_dir={'': 'src'},
+    namespace_packages=['zope',],
+    include_package_data=True,
+    zip_safe=False,
+    )



More information about the Checkins mailing list