summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrashanth Pai <ppai@redhat.com>2013-10-07 15:30:51 +0530
committerLuis Pabon <lpabon@redhat.com>2013-10-15 16:26:59 -0700
commitd2b9657bcff20852de9e047bc126ca392eddab10 (patch)
tree9042e7524b7045f23f2a9efed05ff267366c613b
parent5cd60a1ac0808fff0a89442092c659250b14690d (diff)
Make setup.py pep8 compliant
Change-Id: I7d935203a3fbb59d298f91daaef0a10ca3004d2f Signed-off-by: Prashanth Pai <ppai@redhat.com> Reviewed-on: http://review.gluster.org/6045 Reviewed-by: Luis Pabon <lpabon@redhat.com> Tested-by: Luis Pabon <lpabon@redhat.com>
-rw-r--r--pkgconfig.py2
-rw-r--r--setup.py8
-rw-r--r--tox.ini1
3 files changed, 6 insertions, 5 deletions
diff --git a/pkgconfig.py b/pkgconfig.py
index 2895ceb..9434e3a 100644
--- a/pkgconfig.py
+++ b/pkgconfig.py
@@ -3,6 +3,6 @@
from gluster.swift import _pkginfo as pkginfo
-PKGCONFIG='pkgconfig.in'
+PKGCONFIG = 'pkgconfig.in'
pkginfo.save_config(PKGCONFIG)
diff --git a/setup.py b/setup.py
index 0fb757d..4d26888 100644
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ setup(
'Programming Language :: Python :: 2'
'Programming Language :: Python :: 2.6'
'Programming Language :: Python :: 2.7'
- ],
+ ],
install_requires=[],
scripts=[
'bin/gluster-swift-gen-builders',
@@ -55,6 +55,6 @@ setup(
'object=gluster.swift.obj.server:app_factory',
'container=gluster.swift.container.server:app_factory',
'account=gluster.swift.account.server:app_factory',
- ],
- },
- )
+ ],
+ },
+)
diff --git a/tox.ini b/tox.ini
index 22b28eb..f81069a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -27,6 +27,7 @@ commands = bash tools/functional_tests.sh
[testenv:pep8]
changedir = {toxinidir}
commands =
+ flake8
flake8 gluster test
[testenv:cover]