[Checkins] SVN: zope.tales/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 3 09:03:11 EDT 2007


Log message for revision 80544:
  Get ready for release.
  

Changed:
  U   zope.tales/trunk/CHANGES.txt
  U   zope.tales/trunk/README.txt
  U   zope.tales/trunk/buildout.cfg
  D   zope.tales/trunk/setup.cfg
  U   zope.tales/trunk/setup.py

-=-
Modified: zope.tales/trunk/CHANGES.txt
===================================================================
--- zope.tales/trunk/CHANGES.txt	2007-10-03 07:13:15 UTC (rev 80543)
+++ zope.tales/trunk/CHANGES.txt	2007-10-03 13:03:11 UTC (rev 80544)
@@ -1,16 +1,26 @@
-zope.tales Package Changelog
-============================
+=======
+CHANGES
+=======
 
-zope.tales version 3.2.0 (2006/01/05)
--------------------------------------
+3.4.0 (2007-10-03)
+------------------
 
-Corresponds to the verison of the zope.tales package shipped as part of
-the Zope 3.2.0 release.
+- Updated package setup.
 
-Documentation / test fixes.
+- Initial release outside the Zope 3 trunk.
 
-zope.tales version 3.0.0 (2004/11/07)
--------------------------------------
 
-Corresponds to the verison of the zope.tales package shipped as part of
-the Zope X3.0.0 release.
+3.2.0 (2006-01-05)
+------------------
+
+- Corresponds to the verison of the zope.tales package shipped as part of
+  the Zope 3.2.0 release.
+
+- Documentation / test fixes.
+
+
+3.0.0 (2004-11-07)
+------------------
+
+- Corresponds to the verison of the zope.tales package shipped as part of
+  the Zope X3.0.0 release.

Modified: zope.tales/trunk/README.txt
===================================================================
--- zope.tales/trunk/README.txt	2007-10-03 07:13:15 UTC (rev 80543)
+++ zope.tales/trunk/README.txt	2007-10-03 13:03:11 UTC (rev 80544)
@@ -1,9 +1,3 @@
-zope.tales Package Readme
-=========================
-
-Overview
---------
-
 Template Attribute Language - Expression Syntax
 
 See http://www.zope.org/Wikis/DevSite/Projects/ZPT/TALES%20Specification%201.3

Modified: zope.tales/trunk/buildout.cfg
===================================================================
--- zope.tales/trunk/buildout.cfg	2007-10-03 07:13:15 UTC (rev 80543)
+++ zope.tales/trunk/buildout.cfg	2007-10-03 13:03:11 UTC (rev 80544)
@@ -1,8 +1,12 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
+versions = versions
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.tales
+
+[versions]
+zope.traversing = 3.4.0
+zope.app.publisher = 3.4.0

Deleted: zope.tales/trunk/setup.cfg
===================================================================
--- zope.tales/trunk/setup.cfg	2007-10-03 07:13:15 UTC (rev 80543)
+++ zope.tales/trunk/setup.cfg	2007-10-03 13:03:11 UTC (rev 80544)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.tales/trunk/setup.py
===================================================================
--- zope.tales/trunk/setup.py	2007-10-03 07:13:15 UTC (rev 80543)
+++ zope.tales/trunk/setup.py	2007-10-03 13:03:11 UTC (rev 80544)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -15,30 +15,46 @@
 
 $Id$
 """
-
 import os
-
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.tales',
-      version = '3.4.0b1',
-
-      url='http://svn.zope.org/zope.tales',
-      license='ZPL 2.1',
+      version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
       description='Zope 3 Template Application Language Expression Syntax '
                   '(TALES)',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 template xml tales",
+      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://cheeseshop.python.org/pypi/zope.tales',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages=['zope',],
-      install_requires=['setuptools',
-                        'zope.interface',
-                        'zope.tal'],
+      namespace_packages=['zope'],
+      extras_require = dict(
+          test=['zope.testing',
+                ]),
+      install_requires=[
+          'setuptools',
+          'zope.interface',
+          'zope.tal'],
       include_package_data = True,
-
       zip_safe = False,
       )
-    



More information about the Checkins mailing list