[Checkins] SVN: zope.pagetemplate/trunk/ Updated meta-data and get ready for the release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Oct 2 23:18:28 EDT 2007


Log message for revision 80526:
  Updated meta-data and get ready for the release.
  

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

-=-
Modified: zope.pagetemplate/trunk/CHANGES.txt
===================================================================
--- zope.pagetemplate/trunk/CHANGES.txt	2007-10-03 02:49:49 UTC (rev 80525)
+++ zope.pagetemplate/trunk/CHANGES.txt	2007-10-03 03:18:27 UTC (rev 80526)
@@ -1,34 +1,41 @@
-zope.pagetemplate Package Changelog
-===================================
+=======
+CHANGES
+=======
 
 
-zope.pagetemplate version 3.2.0 (2006/01/05)
---------------------------------------------
+3.4.0 (2007-10-02)
+------------------
 
-Corresponds to the verison of the zope.pagetemplate package shipped
-as part of the Zope 3.2.0 release.
+- Initial release independent of the Zope 3 tree.
 
-ZPTPage macro expansion:  changed label text to match the corresponding
-label in Zope 2 and activated the name spaces for macro expansion
-in 'read'.  See http://www.zope.org/Collectors/Zope3-dev/199
 
-Coding style cleanups.
+3.2.0 (2006-01-05)
+------------------
 
+- Corresponds to the verison of the zope.pagetemplate package shipped
+  as part of the Zope 3.2.0 release.
 
-zope.pagetemplate version 3.1.0 (2005/10/03)
---------------------------------------------
+- ZPTPage macro expansion:  changed label text to match the corresponding
+  label in Zope 2 and activated the name spaces for macro expansion
+  in 'read'.  See http://www.zope.org/Collectors/Zope3-dev/199
 
-Corresponds to the verison of the zope.pagetemplate package shipped
-as part of the Zope 3.1.0 release.
+- Coding style cleanups.
 
-Fixed apidoc and Cookie, which were using wrong descriptor class
-(changed to 'property').  See http://www.zope.org/Collectors/Zope3-dev/387
 
-Documentation / style / testing cleanups.
+3.1.0 (2005-10-03)
+------------------
 
+- Corresponds to the verison of the zope.pagetemplate package shipped
+  as part of the Zope 3.1.0 release.
 
-zope.pagetemplate version 3.0.0 (2004/11/07)
---------------------------------------------
+- Fixed apidoc and Cookie, which were using wrong descriptor class
+  (changed to 'property').  See http://www.zope.org/Collectors/Zope3-dev/387
 
-Corresponds to the verison of the zope.pagetemplate package shipped
-as part of the Zope X3.0.0 release.
+- Documentation / style / testing cleanups.
+
+
+3.0.0 (2004-11-07)
+------------------
+
+- Corresponds to the verison of the zope.pagetemplate package shipped
+  as part of the Zope X3.0.0 release.

Added: zope.pagetemplate/trunk/README.txt
===================================================================
--- zope.pagetemplate/trunk/README.txt	                        (rev 0)
+++ zope.pagetemplate/trunk/README.txt	2007-10-03 03:18:27 UTC (rev 80526)
@@ -0,0 +1,4 @@
+Page Templates provide an elegant templating mechanism that achieves a
+clean separation of presentation and application logic while allowing
+for designers to work with templates in their visual editing tools
+(FrontPage, Dreamweaver, GoLive, etc.).


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

Modified: zope.pagetemplate/trunk/buildout.cfg
===================================================================
--- zope.pagetemplate/trunk/buildout.cfg	2007-10-03 02:49:49 UTC (rev 80525)
+++ zope.pagetemplate/trunk/buildout.cfg	2007-10-03 03:18:27 UTC (rev 80526)
@@ -1,8 +1,7 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.pagetemplate
+eggs = zope.pagetemplate [test]

Deleted: zope.pagetemplate/trunk/setup.cfg
===================================================================
--- zope.pagetemplate/trunk/setup.cfg	2007-10-03 02:49:49 UTC (rev 80525)
+++ zope.pagetemplate/trunk/setup.cfg	2007-10-03 03:18:27 UTC (rev 80526)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.pagetemplate/trunk/setup.py
===================================================================
--- zope.pagetemplate/trunk/setup.py	2007-10-03 02:49:49 UTC (rev 80525)
+++ zope.pagetemplate/trunk/setup.py	2007-10-03 03:18:27 UTC (rev 80526)
@@ -15,29 +15,53 @@
 
 $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.pagetemplate',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.pagetemplate',
-      license='ZPL 2.1',
-      description='Zope Page Templates',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      
+      description='Zope Page Templates',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation' +
+          '----------------------'
+          + '\n\n' +
+          read('src', 'zope', 'pagetemplate', 'architecture.txt')
+          + '\n\n' +
+          read('src', 'zope', 'pagetemplate', 'readme.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 page template",
+      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.pagetemplate',
+      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.interface',
                         'zope.tales',
                         'zope.tal',
                        ],
       include_package_data = True,
-
       zip_safe = False,
       )



More information about the Checkins mailing list