[Checkins] SVN: zope.testbrowser/trunk/setup.py whitespace fixes and other reformatting

Benji York benji at zope.com
Sun Mar 18 20:06:30 EDT 2007


Log message for revision 73329:
  whitespace fixes and other reformatting
  

Changed:
  U   zope.testbrowser/trunk/setup.py

-=-
Modified: zope.testbrowser/trunk/setup.py
===================================================================
--- zope.testbrowser/trunk/setup.py	2007-03-18 19:37:55 UTC (rev 73328)
+++ zope.testbrowser/trunk/setup.py	2007-03-19 00:06:29 UTC (rev 73329)
@@ -16,35 +16,29 @@
 $Id$
 """
 
-import os
-
 from setuptools import setup, find_packages
 
-setup(name='zope.testbrowser',
-      version='3.4dev',
-      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',],
+setup(
+    name = 'zope.testbrowser',
+    version = '3.4dev',
+    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'],
         ),
-      include_package_data = True,
-
-      zip_safe = False,
-      )
+    include_package_data = True,
+    zip_safe = False,
+    )



More information about the Checkins mailing list