diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-31 18:54:22 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-07-31 19:07:38 -0600 |
commit | 56471a170eee1c4694cde1889b8532e25f40e5d0 (patch) | |
tree | b8ff73b46dbbbd4b521d7987c5c7d47df3c8e81e /numpy/random/setup.py | |
parent | 01b0d7e82211b581aaff925e3ccc36cff9ac1895 (diff) | |
download | numpy-56471a170eee1c4694cde1889b8532e25f40e5d0.tar.gz |
STY: PEP8 fixups for numpy/random.
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r-- | numpy/random/setup.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index 55cca69da..33c12975b 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -45,12 +45,11 @@ def configuration(parent_package='',top_path=None): ['mtrand.c', 'randomkit.c', 'initarray.c', 'distributions.c']]+[generate_libraries], libraries=libs, - depends = [join('mtrand', '*.h'), - join('mtrand', '*.pyx'), - join('mtrand', '*.pxi'), - ], - define_macros = defs, - ) + depends=[join('mtrand', '*.h'), + join('mtrand', '*.pyx'), + join('mtrand', '*.pxi'),], + define_macros=defs, + ) config.add_data_files(('.', join('mtrand', 'randomkit.h'))) config.add_data_dir('tests') |