diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-05-19 19:26:41 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-05-20 13:20:58 +0200 |
commit | a44eecac4306504e7d3e6b8253deeb35e6b1fb43 (patch) | |
tree | e779d819f1be8936633594944297df2e9fe192c4 /numpy/typing/setup.py | |
parent | 290a0345c8a0eb33ba98172267e6d392110fe905 (diff) | |
download | numpy-a44eecac4306504e7d3e6b8253deeb35e6b1fb43.tar.gz |
BLD: Add `.pyi` data files to the `numpy.typing` sub-package
Diffstat (limited to 'numpy/typing/setup.py')
-rw-r--r-- | numpy/typing/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/typing/setup.py b/numpy/typing/setup.py index c444e769f..694a756dc 100644 --- a/numpy/typing/setup.py +++ b/numpy/typing/setup.py @@ -3,6 +3,7 @@ def configuration(parent_package='', top_path=None): config = Configuration('typing', parent_package, top_path) config.add_subpackage('tests') config.add_data_dir('tests/data') + config.add_data_files('*.pyi') return config |