summaryrefslogtreecommitdiff
path: root/numpy/lib/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-07-30 18:06:28 -0600
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-07-31 21:21:17 +0200
commit01b0d7e82211b581aaff925e3ccc36cff9ac1895 (patch)
tree8ec68353d5f09b9f0411948f1345ec79f5443b4c /numpy/lib/setup.py
parentdec6658cdc10a23ad0e733fb52a814306033d88c (diff)
downloadnumpy-01b0d7e82211b581aaff925e3ccc36cff9ac1895.tar.gz
STY: Make files in numpy/lib PEP8 compliant.
The rules enforced are the same as those used for scipy.
Diffstat (limited to 'numpy/lib/setup.py')
-rw-r--r--numpy/lib/setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/setup.py b/numpy/lib/setup.py
index 153af314c..68d99c33a 100644
--- a/numpy/lib/setup.py
+++ b/numpy/lib/setup.py
@@ -9,7 +9,6 @@ def configuration(parent_package='',top_path=None):
config.add_include_dirs(join('..', 'core', 'include'))
-
config.add_extension('_compiled_base',
sources=[join('src', '_compiled_base.c')]
)
@@ -19,6 +18,6 @@ def configuration(parent_package='',top_path=None):
return config
-if __name__=='__main__':
+if __name__ == '__main__':
from numpy.distutils.core import setup
setup(configuration=configuration)