[Checkins] SVN: z3c.coverage/trunk/setup.py PEP-8-ify setup.py.

Marius Gedminas cvs-admin at zope.org
Wed Sep 5 13:02:00 UTC 2012


Log message for revision 127712:
  PEP-8-ify setup.py.

Changed:
  U   z3c.coverage/trunk/setup.py

-=-
Modified: z3c.coverage/trunk/setup.py
===================================================================
--- z3c.coverage/trunk/setup.py	2012-09-05 13:01:52 UTC (rev 127711)
+++ z3c.coverage/trunk/setup.py	2012-09-05 13:01:56 UTC (rev 127712)
@@ -21,12 +21,12 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-setup (
+setup(
     name='z3c.coverage',
-    version = '1.2.1dev',
-    author = "Zope Community",
-    author_email = "zope3-dev at zope.org",
-    description = "A script to visualize coverage reports via HTML",
+    version='1.2.1dev',
+    author="Zope Community",
+    author_email="zope3-dev at zope.org",
+    description="A script to visualize coverage reports via HTML",
     long_description=(
         read('README.txt')
         + '\n\n' +
@@ -39,9 +39,9 @@
         + '\n\n' +
         read('CHANGES.txt')
         ),
-    license = "ZPL 2.1",
-    keywords = "zope3 test coverage html",
-    classifiers = [
+    license="ZPL 2.1",
+    keywords="zope3 test coverage html",
+    classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
         'Intended Audience :: Developers',
@@ -51,21 +51,21 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://pypi.python.org/pypi/z3c.coverage',
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['z3c'],
-    extras_require = dict(
-        test = ['zope.testing'],
+    url='http://pypi.python.org/pypi/z3c.coverage',
+    packages=find_packages('src'),
+    include_package_data=True,
+    package_dir={'': 'src'},
+    namespace_packages=['z3c'],
+    extras_require=dict(
+        test=['zope.testing'],
         ),
-    install_requires = [
+    install_requires=[
         'setuptools',
         ],
-    entry_points = """
+    entry_points="""
         [console_scripts]
         coveragereport = z3c.coverage.coveragereport:main
         coveragediff = z3c.coverage.coveragediff:main
         """,
-    zip_safe = False,
-    )
+    zip_safe=False,
+)



More information about the checkins mailing list