From aef53569d4430aef77297968282d904dba86f78c Mon Sep 17 00:00:00 2001 From: whitetuft Date: Thu, 22 Feb 2024 22:56:21 +0100 Subject: [PATCH] fix package installation by adding missing files to the package --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6ec4a4f2..08cdbe5a 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ def read_file(filename): version='1.0.4', include_package_data=True, packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), + package_data={'pyrtlib': ['_lineshape/*', 'climatology/*', 'uncertainty/covariance_matrix/*/*']}, # package_dir={'': 'pyrtlib'}, python_requires='>=3.8', setup_requires=['pytest-runner'],