[Checkins] SVN: zope.testbrowser/branches/adamg-mechanize-update/setup.py Copied remotely

Adam Groszer agroszer at gmail.com
Sat Jul 21 02:42:45 EDT 2007


Log message for revision 78247:
  Copied remotely

Changed:
  A   zope.testbrowser/branches/adamg-mechanize-update/setup.py

-=-
Copied: zope.testbrowser/branches/adamg-mechanize-update/setup.py (from rev 78246, zope.testbrowser/trunk/setup.py)
===================================================================
--- zope.testbrowser/branches/adamg-mechanize-update/setup.py	                        (rev 0)
+++ zope.testbrowser/branches/adamg-mechanize-update/setup.py	2007-07-21 06:42:45 UTC (rev 78247)
@@ -0,0 +1,51 @@
+##############################################################################
+#
+# 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.testbrowser package
+
+$Id$
+"""
+
+from setuptools import setup, find_packages
+
+setup(
+    name = 'zope.testbrowser',
+    version = '3.4.1',
+    url = 'http://svn.zope.org/zope.testbrowser',
+    license = 'ZPL 2.1',
+    description = 'Zope testbrowser',
+    author = 'Zope Corporation and Contributors',
+    author_email = 'zope3-dev at zope.org',
+    long_description = 'An easy to use programmatic web browser'
+        ' with special focus on testing. Used in Zope 3, but not Zope'
+        ' specific.  The zope.testbrowser package used in the Zope 3'
+        ' project for functional testing; this stand-alone version can be'
+        ' used to test or otherwise interact with any web site.',
+    packages = find_packages('src'),
+    package_dir = {'': 'src'},
+    namespace_packages = ['zope',],
+    tests_require = ['zope.testing'],
+    install_requires = ['setuptools'],
+    extras_require = dict(
+        test = ['zope.interface',
+                'zope.schema',
+                'zope.app.component',
+                'zope.app.folder',
+                'zope.app.testing',
+                'zope.app.zcmlfiles',
+                'zope.app.securitypolicy',
+               ],
+        ),
+    include_package_data = True,
+    zip_safe = False,
+    )



More information about the Checkins mailing list