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

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Oct 27 23:04:16 EDT 2007


Log message for revision 81159:
  Get ready for release.
  

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

-=-
Added: zope.app.testing/trunk/CHANGES.txt
===================================================================
--- zope.app.testing/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.testing/trunk/CHANGES.txt	2007-10-28 03:04:16 UTC (rev 81159)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-27)
+------------------
+
+- Initial release independent of the main Zope tree.


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

Added: zope.app.testing/trunk/README.txt
===================================================================
--- zope.app.testing/trunk/README.txt	                        (rev 0)
+++ zope.app.testing/trunk/README.txt	2007-10-28 03:04:16 UTC (rev 81159)
@@ -0,0 +1,4 @@
+This package provides testing support for Zope 3 applications. Besides
+providing numerous setup convenience functions, it implements a testing setup
+that allows the user to make calls to the publisher allowing to write
+functional tests.


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

Modified: zope.app.testing/trunk/buildout.cfg
===================================================================
--- zope.app.testing/trunk/buildout.cfg	2007-10-28 02:20:07 UTC (rev 81158)
+++ zope.app.testing/trunk/buildout.cfg	2007-10-28 03:04:16 UTC (rev 81159)
@@ -1,7 +1,6 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Modified: zope.app.testing/trunk/setup.py
===================================================================
--- zope.app.testing/trunk/setup.py	2007-10-28 02:20:07 UTC (rev 81158)
+++ zope.app.testing/trunk/setup.py	2007-10-28 03:04:16 UTC (rev 81159)
@@ -15,18 +15,42 @@
 
 $Id$
 """
-
 import os
+from setuptools import setup, find_packages
 
-from setuptools import setup, find_packages, Extension
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.testing',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.testing',
-      license='ZPL 2.1',
-      description='Zope application server testing',
+      version = '3.4.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      description='Zope Application Testing Support',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '======================\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'testing', 'dochttp.txt')
+          + '\n\n' +
+          read('src', 'zope', 'app', 'testing', 'doctest.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 test testing setup functional",
+      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.testing',
+      license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],


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


Modified: zope.app.testing/trunk/src/zope/app/testing/doctest.txt
===================================================================
--- zope.app.testing/trunk/src/zope/app/testing/doctest.txt	2007-10-28 02:20:07 UTC (rev 81158)
+++ zope.app.testing/trunk/src/zope/app/testing/doctest.txt	2007-10-28 03:04:16 UTC (rev 81159)
@@ -1,3 +1,4 @@
+========================
 DocTest Functional Tests
 ========================
 



More information about the Checkins mailing list