Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Nov 14, 2009
1 parent f39b1f3 commit 9af1652
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 54 deletions.
36 changes: 15 additions & 21 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CHANGES
=======

five.customerize 0.4 (unreleased)
---------------------------------
1.0a1 - 2009-11-14
------------------

Support Zope 2.12's BoundPageTemplateFile.

Expand All @@ -12,39 +12,33 @@ Specify all package dependencies.

Avoid a dependency on zope.app.apidoc by copying over the getViews method.

five.customerize 0.3 (2008/07/07)
---------------------------------
0.3 (2008/07/07)
----------------

Fix for the long-standing issue where the security context had mysteriously
gone missing.


five.customerize 0.2 (2007/08/17)
---------------------------------
0.2 (2007/08/17)
----------------

Support for viewlets and portlets as used in Plone 3.0


five.customerize 0.1.3 (2007/07/08)
---------------------------------
0.1.3 (2007/07/08)
------------------

Fix in setup.py


five.customerize 0.1.2 (2007/05/04)
---------------------------------
0.1.2 (2007/05/04)
------------------

Release for Plone 3.0beta3 without OSX metadata


five.customerize 0.1.1 (2007/03/03)
---------------------------------
0.1.1 (2007/03/03)
------------------

Minor tweaks and enhancements for the integration into Plone 3.0

0.1 (2006/10/30)
----------------

five.customerize 0.1 (2006/10/30)
---------------------------------

Initial version

Initial version.
6 changes: 3 additions & 3 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Installing This Package
Prerequisites
-------------

* Zope 2.10.x
* Zope 2.12.x

* setuptools

Expand All @@ -15,7 +15,7 @@ Installation
Place the ``five`` top-level package into your instance's
``lib/python`` directory. You can also install it as an egg using
ez_install, for example into your instance by turning it into a
workingenv.
virtualenv.


Configuration
Expand All @@ -35,5 +35,5 @@ Running the Tests

Use the following command to run this package's tests:

$ bin/zopectl test -s five.customerize
$ bin/test -s five.customerize

2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Developer Resources

- Read-only Subversion checkout:

$ svn co svn://svn.zope.org/repos/main/five.customerize/trunk
$ svn co http://svn.zope.org/repos/main/five.customerize/trunk

- Writable Subversion checkout:

Expand Down
21 changes: 0 additions & 21 deletions develop.py

This file was deleted.

13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@

from setuptools import setup

version = '0.4'
version = '1.0a1'

setup(name = 'five.customerize',
version = version,
description = 'TTW customization of template-based Zope 3 views',
keywords = 'zope3 views templates customization ttw',
author = 'Zope Corporation and Contributors',
author_email = 'z3-five@codespeak.net',
url = 'http://svn.zope.org/five.customerize',
download_url = 'http://cheeseshop.python.org/pypi/five.customerize/',
url = 'http://pypi.python.org/pypi/five.customerize',
license = 'ZPL 2.1',
packages = ['five', 'five.customerize'],
package_dir = {'': 'src'},
Expand All @@ -47,21 +46,19 @@
'zope.app.component',
'zope.app.container',
'zope.app.pagetemplate',
# 'transaction',
# 'Acquisition',
# 'Zope2',
'transaction',
'Acquisition',
'Zope2',
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'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 :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
long_description = """\
Expand Down

0 comments on commit 9af1652

Please sign in to comment.