From 6fcf00e62a20b4c933c7918ed529210f9502983c Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Sun, 20 Feb 2022 23:25:20 -0700 Subject: [PATCH] include test data *bz2 files in package --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4db23b4..e2948cd 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,8 @@ ], packages=find_packages(exclude=[]), package_data={'gridData': ['tests/datafiles/*.dx', 'tests/datafiles/*.dx.gz', - 'tests/datafiles/*.ccp4', 'tests/datafiles/*.plt']}, + 'tests/datafiles/*.ccp4', 'tests/datafiles/*.plt', + 'tests/datafiles/*.bz2']}, install_requires=['numpy>=1.0.3', 'six', 'scipy', 'mrcfile'], tests_require=['pytest', 'numpy'], zip_safe=True,