diff mbox

[Branch,~linaro-validation/lava-dashboard/trunk] Rev 227: PEP8 issues in setup.py

Message ID 20110623183717.21265.65542.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Zygmunt Krynicki June 23, 2011, 6:37 p.m. UTC
------------------------------------------------------------
revno: 227
committer: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
branch nick: trunk
timestamp: Thu 2011-06-23 12:04:22 +0200
message:
  PEP8 issues in setup.py
modified:
  setup.py


--
lp:lava-dashboard
https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk

You are subscribed to branch lp:lava-dashboard.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'setup.py'
--- setup.py	2011-06-23 10:03:56 +0000
+++ setup.py	2011-06-23 10:04:22 +0000
@@ -22,19 +22,19 @@ 
 
 
 setup(
-    name = 'lava-dashboard',
-    version = ":versiontools:dashboard_app:__version__",
-    author = "Zygmunt Krynicki",
-    author_email = "zygmunt.krynicki@linaro.org",
-    packages = find_packages(),
-    license = "AGPL",
-    description = "Validation Dashboard for LAVA Server",
-    long_description = """
+    name='lava-dashboard',
+    version=":versiontools:dashboard_app:__version__",
+    author="Zygmunt Krynicki",
+    author_email="zygmunt.krynicki@linaro.org",
+    packages=find_packages(),
+    license="AGPL",
+    description="Validation Dashboard for LAVA Server",
+    long_description="""
     Validation Dashboard is a repository for test results.
     """,
     url='https://launchpad.net/lava-dashboard',
     #test_suite='launch_control.tests.test_suite',
-    entry_points = """
+    entry_points="""
         [lava_server.extensions]
         dashboard=dashboard_app.extension:DashboardExtension
         """,
@@ -47,7 +47,7 @@ 
         "Programming Language :: Python :: 2.6",
         "Topic :: Software Development :: Testing",
     ],
-    install_requires = [
+    install_requires=[
         'Django >= 1.2',
         'linaro-django-pagination >= 2.0',
         'django-restricted-resource >= 0.2.5',
@@ -59,10 +59,10 @@ 
         'south >= 0.7',
         'versiontools >= 1.1',
     ],
-    setup_requires = [
+    setup_requires=[
         'versiontools >= 1.3.1',
     ],
-    tests_require = [
+    tests_require=[
         'django-testscenarios >= 0.6',
     ],
     zip_safe=False,