From d63a95dd3b1faba0d83097e5f83b33730607fd57 Mon Sep 17 00:00:00 2001 From: Jun Aishima Date: Tue, 5 Mar 2024 11:33:22 -0500 Subject: [PATCH] add package_data to ensure schemas are packaged --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6ffef02..3fa4ae7 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ def read(fname): url="https://github.com/NSLS-II/analysisstore.git", python_requires=">={}".format(".".join(str(n) for n in min_version)), packages=find_packages(), + package_data={'analysisstore': ['schemas/*.json']}, include_package_data=True, classifiers=[ "License :: OSI Approved :: BSD License",