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

Stephan Richter srichter at cosmos.phy.tufts.edu
Sun Nov 4 15:16:41 EST 2007


Log message for revision 81485:
  Get ready for release.
  

Changed:
  A   zope.app.pythonpage/trunk/CHANGES.txt
  A   zope.app.pythonpage/trunk/README.txt
  U   zope.app.pythonpage/trunk/buildout.cfg
  U   zope.app.pythonpage/trunk/setup.py
  U   zope.app.pythonpage/trunk/src/zope/app/pythonpage/README.txt
  U   zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py

-=-
Added: zope.app.pythonpage/trunk/CHANGES.txt
===================================================================
--- zope.app.pythonpage/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.pythonpage/trunk/CHANGES.txt	2007-11-04 20:16:40 UTC (rev 81485)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.


Property changes on: zope.app.pythonpage/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.app.pythonpage/trunk/README.txt
===================================================================
--- zope.app.pythonpage/trunk/README.txt	                        (rev 0)
+++ zope.app.pythonpage/trunk/README.txt	2007-11-04 20:16:40 UTC (rev 81485)
@@ -0,0 +1,2 @@
+Python Page provides the user with a content object that interprets
+Python in content space.


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

Modified: zope.app.pythonpage/trunk/buildout.cfg
===================================================================
--- zope.app.pythonpage/trunk/buildout.cfg	2007-11-04 20:04:42 UTC (rev 81484)
+++ zope.app.pythonpage/trunk/buildout.cfg	2007-11-04 20:16:40 UTC (rev 81485)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Modified: zope.app.pythonpage/trunk/setup.py
===================================================================
--- zope.app.pythonpage/trunk/setup.py	2007-11-04 20:04:42 UTC (rev 81484)
+++ zope.app.pythonpage/trunk/setup.py	2007-11-04 20:16:40 UTC (rev 81485)
@@ -1,25 +1,67 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup for zope.app.pythonpage package
+
+$Id$
+"""
+import os
 from setuptools import setup, find_packages
 
-setup(
-    name = 'zope.app.pythonpage',
-    version = '0.1',
-    author = 'Zope Corporation and Contributors',
-    author_email = 'zope3-dev at zope.org',
-    description = '',
-    license = 'ZPL 2.1',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-    packages = find_packages('src'),
-    namespace_packages = ['zope', 'zope.app'],
-    package_dir = {'': 'src'},
-    extras_require=dict(test=['zope.app.testing']),
-    install_requires = ['setuptools',
-                        'ZODB3',
-                        'zope.app.zapi',
-                        'zope.app.container',
-                        'zope.app.interpreter',
-                        'zope.interface',
-                        'zope.schema',
-                        'zope.app.i18n',
-                        'zope.security'],
-    zip_safe = False,
-    )
+setup(name='zope.app.pythonpage',
+      version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Python Page -- Zope 3 Content Components',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'pythonpage', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 python page content component",
+      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.app.pythonpage',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      extras_require=dict(test=['zope.app.testing']),
+      install_requires = ['setuptools',
+                          'ZODB3',
+                          'zope.app.zapi',
+                          'zope.app.container',
+                          'zope.app.interpreter',
+                          'zope.interface',
+                          'zope.schema',
+                          'zope.app.i18n',
+                          'zope.security'],
+      include_package_data = True,
+      zip_safe = False,
+      )

Modified: zope.app.pythonpage/trunk/src/zope/app/pythonpage/README.txt
===================================================================
--- zope.app.pythonpage/trunk/src/zope/app/pythonpage/README.txt	2007-11-04 20:04:42 UTC (rev 81484)
+++ zope.app.pythonpage/trunk/src/zope/app/pythonpage/README.txt	2007-11-04 20:16:40 UTC (rev 81485)
@@ -1,3 +1,4 @@
+===========
 Python Page
 ===========
 

Modified: zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py
===================================================================
--- zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py	2007-11-04 20:04:42 UTC (rev 81484)
+++ zope.app.pythonpage/trunk/src/zope/app/pythonpage/__init__.py	2007-11-04 20:16:40 UTC (rev 81485)
@@ -24,7 +24,7 @@
 from zope.app.interpreter.interfaces import IInterpreter
 from zope.interface import Interface, implements
 from zope.schema import SourceText, TextLine
-from zope.app.i18n import ZopeMessageFactory as _
+from zope.i18nmessageid import ZopeMessageFactory as _
 from zope.security.untrustedpython.interpreter import CompiledProgram
 
 



More information about the Checkins mailing list