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

Stephan Richter srichter at cosmos.phy.tufts.edu
Sun Nov 4 22:14:22 EST 2007


Log message for revision 81506:
  Get ready for release.
  

Changed:
  U   zope.testrecorder/trunk/CHANGES.txt
  D   zope.testrecorder/trunk/MANIFEST.in
  U   zope.testrecorder/trunk/README.txt
  U   zope.testrecorder/trunk/buildout.cfg
  D   zope.testrecorder/trunk/setup.cfg.in
  U   zope.testrecorder/trunk/setup.py
  _U  zope.testrecorder/trunk/src/

-=-
Modified: zope.testrecorder/trunk/CHANGES.txt
===================================================================
--- zope.testrecorder/trunk/CHANGES.txt	2007-11-05 00:11:07 UTC (rev 81505)
+++ zope.testrecorder/trunk/CHANGES.txt	2007-11-05 03:14:21 UTC (rev 81506)
@@ -1,9 +1,15 @@
-CHANGES for zope.testrecorder
-=============================
+=======
+CHANGES
+=======
 
-zope.testrecorder 0.2
----------------------
+0.3 (2007-11-04)
+----------------
 
+* Update package meta-data and first
+
+0.2 (2006-06-24)
+----------------
+
 * First real release with all bells and whistles
 
 * Rearranged directory structure to match standard Zope repository
@@ -12,8 +18,8 @@
 * Some docs polishing
 
 
-zope.testrecorder 0.1
----------------------
+0.1 (2005-08-10)
+----------------
 
 * First public "release" by being included via an svn:external in the
   main Zope 3 source tree.

Deleted: zope.testrecorder/trunk/MANIFEST.in
===================================================================
--- zope.testrecorder/trunk/MANIFEST.in	2007-11-05 00:11:07 UTC (rev 81505)
+++ zope.testrecorder/trunk/MANIFEST.in	2007-11-05 03:14:21 UTC (rev 81506)
@@ -1 +0,0 @@
-exclude setup.cfg

Modified: zope.testrecorder/trunk/README.txt
===================================================================
--- zope.testrecorder/trunk/README.txt	2007-11-05 00:11:07 UTC (rev 81505)
+++ zope.testrecorder/trunk/README.txt	2007-11-05 03:14:21 UTC (rev 81506)
@@ -1,3 +1,4 @@
+=============
 Test Recorder
 =============
 

Modified: zope.testrecorder/trunk/buildout.cfg
===================================================================
--- zope.testrecorder/trunk/buildout.cfg	2007-11-05 00:11:07 UTC (rev 81505)
+++ zope.testrecorder/trunk/buildout.cfg	2007-11-05 03:14:21 UTC (rev 81506)
@@ -2,8 +2,6 @@
 develop = .
 parts = test
 
-find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.testrecorder

Deleted: zope.testrecorder/trunk/setup.cfg.in
===================================================================
--- zope.testrecorder/trunk/setup.cfg.in	2007-11-05 00:11:07 UTC (rev 81505)
+++ zope.testrecorder/trunk/setup.cfg.in	2007-11-05 03:14:21 UTC (rev 81506)
@@ -1,4 +0,0 @@
-
-[egg_info]
-tag_build = .dev
-tag_svn_revision = 1

Modified: zope.testrecorder/trunk/setup.py
===================================================================
--- zope.testrecorder/trunk/setup.py	2007-11-05 00:11:07 UTC (rev 81505)
+++ zope.testrecorder/trunk/setup.py	2007-11-05 03:14:21 UTC (rev 81506)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2006-2007 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -15,25 +15,25 @@
 
 $Id$
 """
+import os
 try:
-    from setuptools import setup, Extension
+    from setuptools import setup
 except ImportError, e:
-    from distutils.core import setup, Extension
+    from distutils.core import setup
 
-setup(name='zope.testrecorder',
-      version='3.4dev',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-      url='http://svn.zope.org/zope.testrecorder',
-      license='ZPL 2.1',
-      description='Test recorder for functional tests',
+setup(name='zope.testrecorder',
+      version='0.3.0',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description="""\
-The testrecorder is a browser-based tool to support the rapid
-development of functional tests for Web-based systems and
-applications.  The idea is to "record" tests by exercising whatever is
-to be tested within the browser.  The test recorder will turn a
-recorded session into a functional test.""",
+      description='Test recorder for functional tests',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
       keywords='web testing',
       classifiers=[
           'Development Status :: 5 - Production/Stable',
@@ -43,14 +43,13 @@
           'Topic :: Software Development :: Testing',
           ],
 
+      url='http://svn.zope.org/zope.testrecorder',
+      license='ZPL 2.1',
       packages=['zope', 'zope.testrecorder'],
       package_dir = {'': 'src'},
       namespace_packages=['zope'],
-      package_data = {
-          '': ['*.txt', '*.zcml'],
-          'zope.testrecorder': ['www/*', 'html/*'],
-          },
       install_requires=['setuptools',
                         'zope.app.publisher'],
+      include_package_data = True,
       zip_safe = False,
       )


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

   + zope.testrecorder.egg-info




More information about the Checkins mailing list