[Checkins] SVN: zope.testrecorder/trunk/ Some packaging boiler plate, copied over from package-template.

Philipp von Weitershausen philikon at philikon.de
Thu Jun 22 18:10:49 EDT 2006


Log message for revision 68801:
  Some packaging boiler plate, copied over from package-template.
  

Changed:
  A   zope.testrecorder/trunk/MANIFEST.in
  A   zope.testrecorder/trunk/setup.cfg.in
  A   zope.testrecorder/trunk/setup.py

-=-
Copied: zope.testrecorder/trunk/MANIFEST.in (from rev 68799, projectsupport/trunk/project-template/trunk/MANIFEST.in)

Copied: zope.testrecorder/trunk/setup.cfg.in (from rev 68799, projectsupport/trunk/project-template/trunk/setup.cfg.in)

Copied: zope.testrecorder/trunk/setup.py (from rev 68799, projectsupport/trunk/project-template/trunk/setup.py)
===================================================================
--- projectsupport/trunk/project-template/trunk/setup.py	2006-06-22 21:57:02 UTC (rev 68799)
+++ zope.testrecorder/trunk/setup.py	2006-06-22 22:10:49 UTC (rev 68801)
@@ -0,0 +1,42 @@
+##############################################################################
+#
+# Copyright (c) 2004 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.testrecorder package
+
+$Id$
+"""
+
+import os
+
+try:
+    from setuptools import setup, Extension
+except ImportError, e:
+    from distutils.core import setup, Extension
+
+setup(name='zope.testrecorder',
+      version='0.2',
+
+      url='http://svn.zope.org/zope.testrecorder',
+      license='ZPL 2.1',
+      description='Test recorder for functional tests',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      long_description='',
+      
+      packages=['zope', 'zope.testrecorder'],
+      package_dir = {'': 'src'},
+      namespace_packages=['zope',],
+      include_package_data = True,
+
+      zip_safe = False,
+      )



More information about the Checkins mailing list