summaryrefslogtreecommitdiff
path: root/numpy/testing/setup.py
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2015-07-12 00:29:34 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2015-07-12 00:29:34 +0200
commitddc53885e1b66b6e4e7d299d2c808ddc472913b9 (patch)
tree0a6eb451c9d79a0a3b77f2387e31bb1486b4578d /numpy/testing/setup.py
parent57e6b4b1de8c50641119b3f11ba62e660eece95a (diff)
parentad40c230c4da2ca336bed6b093e8efaba590eec3 (diff)
downloadnumpy-ddc53885e1b66b6e4e7d299d2c808ddc472913b9.tar.gz
Merge pull request #6049 from charris/pep8-numpy-testing
PEP8 and pyflakes fixups for numpy/testing and numpy/testing/tests
Diffstat (limited to 'numpy/testing/setup.py')
-rwxr-xr-xnumpy/testing/setup.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/testing/setup.py b/numpy/testing/setup.py
index 595e48925..7c1c237b9 100755
--- a/numpy/testing/setup.py
+++ b/numpy/testing/setup.py
@@ -11,10 +11,10 @@ def configuration(parent_package='',top_path=None):
if __name__ == '__main__':
from numpy.distutils.core import setup
- setup(maintainer = "NumPy Developers",
- maintainer_email = "numpy-dev@numpy.org",
- description = "NumPy test module",
- url = "http://www.numpy.org",
- license = "NumPy License (BSD Style)",
- configuration = configuration,
+ setup(maintainer="NumPy Developers",
+ maintainer_email="numpy-dev@numpy.org",
+ description="NumPy test module",
+ url="http://www.numpy.org",
+ license="NumPy License (BSD Style)",
+ configuration=configuration,
)