1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Author: Diane Trout <diane@ghic.org>
Description: The upstream test cases assume that they will
be run from the source tree. When pybuild runs in .pybuild
it can't find the files.
They're pretty small so I just went ahead installed them into the
python source tree
Forwarded: not-needed
--- a/setup.py
+++ b/setup.py
@@ -56,6 +56,7 @@
python_requires=">=3.6",
packages=find_namespace_packages(include=["anndata", "anndata.*"]),
include_package_data=True,
+ package_data={"": ["*.csv", "*.tsv", "*.xlsx"]},
zip_safe=False,
classifiers=[
"Environment :: Console",
|