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

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 24 19:21:40 EDT 2007


Log message for revision 81073:
  Get ready for release.
  

Changed:
  A   zope.app.interpreter/trunk/CHANGES.txt
  A   zope.app.interpreter/trunk/README.txt
  U   zope.app.interpreter/trunk/buildout.cfg
  D   zope.app.interpreter/trunk/setup.cfg
  U   zope.app.interpreter/trunk/setup.py
  _U  zope.app.interpreter/trunk/src/

-=-
Added: zope.app.interpreter/trunk/CHANGES.txt
===================================================================
--- zope.app.interpreter/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.interpreter/trunk/CHANGES.txt	2007-10-24 23:21:40 UTC (rev 81073)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-24)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.interpreter/trunk/README.txt
===================================================================
--- zope.app.interpreter/trunk/README.txt	                        (rev 0)
+++ zope.app.interpreter/trunk/README.txt	2007-10-24 23:21:40 UTC (rev 81073)
@@ -0,0 +1 @@
+Integration of the safe Python interpreter in Zope 3.


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

Modified: zope.app.interpreter/trunk/buildout.cfg
===================================================================
--- zope.app.interpreter/trunk/buildout.cfg	2007-10-24 22:50:20 UTC (rev 81072)
+++ zope.app.interpreter/trunk/buildout.cfg	2007-10-24 23:21:40 UTC (rev 81073)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.interpreter/trunk/setup.cfg
===================================================================
--- zope.app.interpreter/trunk/setup.cfg	2007-10-24 22:50:20 UTC (rev 81072)
+++ zope.app.interpreter/trunk/setup.cfg	2007-10-24 23:21:40 UTC (rev 81073)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.interpreter/trunk/setup.py
===================================================================
--- zope.app.interpreter/trunk/setup.py	2007-10-24 22:50:20 UTC (rev 81072)
+++ zope.app.interpreter/trunk/setup.py	2007-10-24 23:21:40 UTC (rev 81073)
@@ -1,22 +1,57 @@
+##############################################################################
+#
+# 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.folder package
+
+$Id: setup.py 81038 2007-10-24 14:34:17Z srichter $
+"""
 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.app.interpreter',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.interpreter',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-
+      description='Safe Python Intrepeter Integration into Zope 3',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 python safe interpreter",
+      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.interpreter',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
       namespace_packages=['zope', 'zope.app'],
-      include_package_data = True,
       install_requires=[
           'setuptools',
           'zope.interface',
           'zope.security [untrustedpython]'
           ],
+      include_package_data = True,
       zip_safe = False,
       )


Property changes on: zope.app.interpreter/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.interpreter.egg-info




More information about the Checkins mailing list