[Checkins] SVN: Sandbox/philikon/foundation/maintaining-software.txt adjust whitespace in sample setup.py to match the style guide(s) that apply

Fred L. Drake, Jr. fdrake at gmail.com
Wed Aug 29 11:45:45 EDT 2007


Log message for revision 79346:
  adjust whitespace in sample setup.py to match the style guide(s) that apply

Changed:
  U   Sandbox/philikon/foundation/maintaining-software.txt

-=-
Modified: Sandbox/philikon/foundation/maintaining-software.txt
===================================================================
--- Sandbox/philikon/foundation/maintaining-software.txt	2007-08-29 12:37:59 UTC (rev 79345)
+++ Sandbox/philikon/foundation/maintaining-software.txt	2007-08-29 15:45:45 UTC (rev 79346)
@@ -336,32 +336,33 @@
 
       from setuptools import setup, find_packages
 
-      setup(name='z3c.awesomesite',
-            version = '2.0.0',
-            url='http://pypi.python.org/pypi/z3c.awesomesite',
-            author='Philipp von Weitershausen',
-            author_email='philipp at weitershausen.de',
-            license='ZPL 2.1',
-            classifiers = ['Environment :: Web Environment',
-                           'Intended Audience :: Developers',
-                           'License :: OSI Approved :: Zope Public License',
-                           'Programming Language :: Python',
-                           'Operating System :: OS Independent',
-                           'Topic :: Internet :: WWW/HTTP',
-                           'Framework :: Zope3',
-                            ],
-            description="An awesome website implementation for Zope 3",
-            long_description=open('README.txt').read(),
+      setup(
+          name='z3c.awesomesite',
+          version='2.0.0',
+          url='http://pypi.python.org/pypi/z3c.awesomesite',
+          author='Philipp von Weitershausen',
+          author_email='philipp at weitershausen.de',
+          license='ZPL 2.1',
+          classifiers=['Environment :: Web Environment',
+                       'Intended Audience :: Developers',
+                       'License :: OSI Approved :: Zope Public License',
+                       'Programming Language :: Python',
+                       'Operating System :: OS Independent',
+                       'Topic :: Internet :: WWW/HTTP',
+                       'Framework :: Zope3',
+                       ],
+          description="An awesome website implementation for Zope 3",
+          long_description=open('README.txt').read(),
 
-            packages=find_packages('src'),
-            package_dir={'': 'src'},
+          packages=find_packages('src'),
+          package_dir={'': 'src'},
+
+          namespace_packages=['z3c'],
+          include_package_data=True,
+          install_requires=['setuptools', 'zope.interface, 'zope.component']
+          zip_safe=False,
+          )
 
-            namespace_packages=['z3c'],
-            include_package_data=True,
-            install_requires=['setuptools', 'zope.interface, 'zope.component']
-            zip_safe = False,
-            )
-
     To elaborate on this example:
 
     * Many packages don't have their own "homepage" on zope.org.  It



More information about the Checkins mailing list