[Checkins] SVN: five.customerize/branches/plone-3.0-branch/ some preparations for the first release to the cheeseshop

Andreas Zeidler az at zitc.de
Sat Mar 3 08:41:27 EST 2007


Log message for revision 72965:
  some preparations for the first release to the cheeseshop

Changed:
  U   five.customerize/branches/plone-3.0-branch/CHANGES.txt
  U   five.customerize/branches/plone-3.0-branch/INSTALL.txt
  D   five.customerize/branches/plone-3.0-branch/MANIFEST.in
  U   five.customerize/branches/plone-3.0-branch/README.txt
  A   five.customerize/branches/plone-3.0-branch/setup.cfg
  D   five.customerize/branches/plone-3.0-branch/setup.cfg.in
  U   five.customerize/branches/plone-3.0-branch/setup.py
  A   five.customerize/branches/plone-3.0-branch/src/five/customerize/version.txt

-=-
Modified: five.customerize/branches/plone-3.0-branch/CHANGES.txt
===================================================================
--- five.customerize/branches/plone-3.0-branch/CHANGES.txt	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/CHANGES.txt	2007-03-03 13:41:26 UTC (rev 72965)
@@ -1,7 +1,14 @@
 CHANGES
 =======
 
+five.customerize 0.1.1 (2007/03/03)
+---------------------------------
+
+Minor tweaks and enhancements for the integration into Plone 3.0
+
+
 five.customerize 0.1 (2006/10/30)
 ---------------------------------
 
 Initial version
+

Modified: five.customerize/branches/plone-3.0-branch/INSTALL.txt
===================================================================
--- five.customerize/branches/plone-3.0-branch/INSTALL.txt	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/INSTALL.txt	2007-03-03 13:41:26 UTC (rev 72965)
@@ -36,3 +36,4 @@
 Use the following command to run this package's tests:
 
   $ bin/zopectl test -s five.customerize
+

Deleted: five.customerize/branches/plone-3.0-branch/MANIFEST.in
===================================================================
--- five.customerize/branches/plone-3.0-branch/MANIFEST.in	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/MANIFEST.in	2007-03-03 13:41:26 UTC (rev 72965)
@@ -1 +0,0 @@
-exclude setup.cfg

Modified: five.customerize/branches/plone-3.0-branch/README.txt
===================================================================
--- five.customerize/branches/plone-3.0-branch/README.txt	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/README.txt	2007-03-03 13:41:26 UTC (rev 72965)
@@ -32,3 +32,4 @@
 - Writable Subversion checkout:
 
   $ svn co svn+ssh://svn.zope.org/repos/main/five.customerize/trunk
+

Copied: five.customerize/branches/plone-3.0-branch/setup.cfg (from rev 72962, five.customerize/branches/plone-3.0-branch/setup.cfg.in)
===================================================================
--- five.customerize/branches/plone-3.0-branch/setup.cfg.in	2007-03-02 16:32:07 UTC (rev 72962)
+++ five.customerize/branches/plone-3.0-branch/setup.cfg	2007-03-03 13:41:26 UTC (rev 72965)
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = dev
+tag_svn_revision = true

Deleted: five.customerize/branches/plone-3.0-branch/setup.cfg.in
===================================================================
--- five.customerize/branches/plone-3.0-branch/setup.cfg.in	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/setup.cfg.in	2007-03-03 13:41:26 UTC (rev 72965)
@@ -1,4 +0,0 @@
-
-[egg_info]
-tag_build = .dev
-tag_svn_revision = 1

Modified: five.customerize/branches/plone-3.0-branch/setup.py
===================================================================
--- five.customerize/branches/plone-3.0-branch/setup.py	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/setup.py	2007-03-03 13:41:26 UTC (rev 72965)
@@ -11,26 +11,38 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup for five.customerize package
+""" Setup for five.customerize package """
 
-$Id$
-"""
-import os
-from setuptools import setup, Extension
+from setuptools import setup
 
-setup(name='five.customerize',
-      version='0.1',
-      url='http://svn.zope.org/five.customerize',
-      license='ZPL 2.1',
-      description='TTW customization of template-based Zope 3 views',
-      author='Zope Corporation and Contributors',
-      author_email='z3-five at codespeak.net',
-      long_description='',
-      
-      packages=['five', 'five.customerize'],
+setup(name = 'five.customerize',
+      version = '0.1.1',
+      description = 'TTW customization of template-based Zope 3 views',
+      keywords = 'zope3 views templates customization ttw',
+      author = 'Zope Corporation and Contributors',
+      author_email = 'z3-five at codespeak.net',
+      url = 'http://svn.zope.org/five.customerize',
+      download_url = 'http://cheeseshop.python.org/pypi/five.customerize/',
+      license = 'ZPL 2.1',
+      packages = ['five', 'five.customerize'],
       package_dir = {'': 'src'},
-      namespace_packages=['five',],
+      namespace_packages = ['five',],
       include_package_data = True,
+      platforms = 'Any',
+      zip_safe = False,
+      classifiers = [
+        'Development Status :: 4 - Beta',
+        'Environment :: Web Environment',
+        'Framework :: Zope2',
+        'Framework :: Zope3',
+        'Intended Audience :: Other Audience',
+        'Intended Audience :: System Administrators',
+        'License :: OSI Approved :: Zope Public License',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Topic :: Internet :: WWW/HTTP :: Site Management',
+      ],
+      long_description = """\
+        """,
+)
 
-      zip_safe = False,
-      )

Added: five.customerize/branches/plone-3.0-branch/src/five/customerize/version.txt
===================================================================
--- five.customerize/branches/plone-3.0-branch/src/five/customerize/version.txt	2007-03-02 23:17:42 UTC (rev 72964)
+++ five.customerize/branches/plone-3.0-branch/src/five/customerize/version.txt	2007-03-03 13:41:26 UTC (rev 72965)
@@ -0,0 +1 @@
+0.1.1
\ No newline at end of file



More information about the Checkins mailing list