Skip to content

Commit 90841d1

Browse files
committed
Add a setup.py to the array_api submodule
Original NumPy Commit: d74a7d0b3297e10194bd3899a0d17a63610e49a1
1 parent 366ab5b commit 90841d1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

array_api_strict/setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def configuration(parent_package='', top_path=None):
2+
from numpy.distutils.misc_util import Configuration
3+
config = Configuration('array_api', parent_package, top_path)
4+
config.add_subpackage('tests')
5+
return config
6+
7+
8+
if __name__ == '__main__':
9+
from numpy.distutils.core import setup
10+
setup(configuration=configuration)

0 commit comments

Comments
 (0)