[Checkins] SVN: zope.tal/trunk/ Updated meta-data, getting ready for release.

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


Log message for revision 80546:
  Updated meta-data, getting ready for release.
  

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

-=-
Modified: zope.tal/trunk/CHANGES.txt
===================================================================
--- zope.tal/trunk/CHANGES.txt	2007-10-03 13:05:05 UTC (rev 80545)
+++ zope.tal/trunk/CHANGES.txt	2007-10-03 13:34:40 UTC (rev 80546)
@@ -1,13 +1,17 @@
-zope.tal package changelog
-==========================
+=======
+CHANGES
+=======
 
-After 3.4.0b1
--------------
+3.4.0 (2007-10-03)
+------------------
 
+- Updated package meta-data.
+
+
 3.4.0b1
 -------
 
-- Updated dependency for zope.i18n that requires the correct version of
+- Updated dependency for ``zope.i18n`` that requires the correct version of
   zope.security to avoid a hidden dependency issue in zope.security.
 
 

Modified: zope.tal/trunk/README.txt
===================================================================
--- zope.tal/trunk/README.txt	2007-10-03 13:05:05 UTC (rev 80545)
+++ zope.tal/trunk/README.txt	2007-10-03 13:34:40 UTC (rev 80546)
@@ -1,9 +1,9 @@
-zope.tal Package Readme
-=======================
+Template Attribute Language (TAL)
+=================================
 
 Overview
 --------
--
+
 The Zope3 Template Attribute Languate (TAL) specifies the custom namespace
 and attributes which are used by the Zope Page Templates renderer to inject
 dynamic markup into a page.  It also includes the Macro Expansion for TAL

Modified: zope.tal/trunk/buildout.cfg
===================================================================
--- zope.tal/trunk/buildout.cfg	2007-10-03 13:05:05 UTC (rev 80545)
+++ zope.tal/trunk/buildout.cfg	2007-10-03 13:34:40 UTC (rev 80546)
@@ -1,8 +1,12 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
+versions = versions
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.tal
+
+[versions]
+zope.traversing = 3.4.0
+zope.app.publisher = 3.4.0

Modified: zope.tal/trunk/setup.py
===================================================================
--- zope.tal/trunk/setup.py	2007-10-03 13:05:05 UTC (rev 80545)
+++ zope.tal/trunk/setup.py	2007-10-03 13:34:40 UTC (rev 80546)
@@ -15,29 +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.tal',
-      version = '3.4.0b2',
-      url='http://svn.zope.org/zope.tal',
-      license='ZPL 2.1',
-      description='Zope 3 Template Application Languate (TAL)',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-
+      description='Zope 3 Template Application Languate (TAL)',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 template xml tal",
+      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.tal',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages=['zope',],
+      namespace_packages=['zope'],
+      extras_require = dict(
+          test=['zope.testing',
+                ]),
       install_requires=['setuptools',
                         'zope.i18nmessageid',
-                        'zope.i18n>=3.4.0b1',
+                        'zope.i18n',
                         'zope.interface',
                        ],
       include_package_data = True,
-
       zip_safe = False,
       )



More information about the Checkins mailing list