diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-11-04 12:08:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 12:08:21 +0200 |
commit | 8eb6555711888f0ab5594a2bd82d230ba33a3d7c (patch) | |
tree | 9558ed28b3739542a8ef78fe7086c0ed0ad49782 /setup.py | |
parent | cb340848f0c4df96c93980251f240347cccc4ff8 (diff) | |
parent | 5702b51bd22b2a96a87bebb3518a57a2ad6904ca (diff) | |
download | numpy-8eb6555711888f0ab5594a2bd82d230ba33a3d7c.tar.gz |
Merge pull request #19800 from honno/xp-entry-point
ENH: Add entry point for Array API implementation
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -411,7 +411,8 @@ def setup_package(): python_requires='>=3.8', zip_safe=False, entry_points={ - 'console_scripts': f2py_cmds + 'console_scripts': f2py_cmds, + 'array_api': ['numpy = numpy.array_api'], }, ) |