From 1acb9b503e11c33d8d57c3a3b82f0bdd032beada Mon Sep 17 00:00:00 2001 From: Kevin Zakka Date: Sat, 18 Mar 2023 19:14:41 -0700 Subject: [PATCH] Add include_package_data to add to wheel. --- robopianist/__init__.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/robopianist/__init__.py b/robopianist/__init__.py index 4e70218..1f64663 100644 --- a/robopianist/__init__.py +++ b/robopianist/__init__.py @@ -14,7 +14,7 @@ from pathlib import Path -__version__ = "1.0.4" +__version__ = "1.0.5" # Path to the root of the project. _PROJECT_ROOT = Path(__file__).parent.parent diff --git a/setup.py b/setup.py index 6fdc33b..22ceb4b 100644 --- a/setup.py +++ b/setup.py @@ -95,6 +95,7 @@ packages=find_packages(exclude=["examples"]), python_requires=">=3.8, <3.11", install_requires=core_requirements, + include_package_data=True, classifiers=classifiers, extras_require={ "test": test_requirements,