We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3730fc0 commit d74a7d0Copy full SHA for d74a7d0
numpy/array_api/setup.py
@@ -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