From b9ab86d9fb31e2b25177b87b244d37ca504fa00b Mon Sep 17 00:00:00 2001 From: Khor Shu Heng Date: Tue, 28 May 2024 14:37:34 +0800 Subject: [PATCH] feat: include package data for python sdk package --- caraml-store-sdk/python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/caraml-store-sdk/python/setup.py b/caraml-store-sdk/python/setup.py index ed1672e..bc4e398 100644 --- a/caraml-store-sdk/python/setup.py +++ b/caraml-store-sdk/python/setup.py @@ -37,6 +37,7 @@ python_requires=REQUIRES_PYTHON, url=URL, packages=find_packages(exclude=("tests",)), + include_package_data=True, install_requires=REQUIRED, extras_require=EXTRA_REQUIRED, use_scm_version={"root": "../..", "relative_to": __file__, "tag_regex": TAG_REGEX},