diff options
author | mattip <matti.picus@gmail.com> | 2019-09-27 15:10:40 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-11 15:08:46 +0300 |
commit | e527e71f11e79e03eee41441d383b046ddb68d8b (patch) | |
tree | e01be48bcd9d363f4661214711bc80d2b3362ed9 /numpy/random/setup.py | |
parent | 007b3236a1409648629660cd6a25adeaba40cf75 (diff) | |
download | numpy-e527e71f11e79e03eee41441d383b046ddb68d8b.tar.gz |
API: rearrange the cython files in numpy.random
Diffstat (limited to 'numpy/random/setup.py')
-rw-r--r-- | numpy/random/setup.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py index ce7f0565f..33fe123a6 100644 --- a/numpy/random/setup.py +++ b/numpy/random/setup.py @@ -126,6 +126,15 @@ def configuration(parent_package='', top_path=None): depends=['mtrand.pyx'], define_macros=defs + LEGACY_DEFS, ) + config.add_data_files('bit_generator.pxd') + config.add_data_files('bounded_integers.pxd') + config.add_data_files('common.pxd') + # config.add_data_files('generator.pxd') + # config.add_data_files('mt19937.pxd') + # config.add_data_files('mtrand.pxd') + # config.add_data_files('pcg64.pxd') + # config.add_data_files('philox.pxd') + # config.add_data_files('sfc64.pxd') return config |