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 366ab5b commit 90841d1Copy full SHA for 90841d1
array_api_strict/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