Skip to content

Commit d74a7d0

Browse files
committed
Add a setup.py to the array_api submodule
1 parent 3730fc0 commit d74a7d0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

numpy/array_api/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)