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 a4f1b2c commit 3f06837Copy full SHA for 3f06837
array_api_compat/dask/__init__.py
setup.py
@@ -1,4 +1,4 @@
1
-from setuptools import setup, find_namespace_packages
+from setuptools import setup, find_packages
2
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
@@ -8,7 +8,7 @@
8
setup(
9
name='array_api_compat',
10
version=array_api_compat.__version__,
11
- packages=find_namespace_packages(include=["array_api_compat*"]),
+ packages=find_packages(include=["array_api_compat*"]),
12
author="Consortium for Python Data API Standards",
13
description="A wrapper around NumPy and other array libraries to make them compatible with the Array API standard",
14
long_description=long_description,
0 commit comments