From 29df63ebaade56f058b9926c12eed75ced025e02 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Thu, 14 Aug 2025 18:09:38 +0200 Subject: [PATCH 1/2] Exclude test files from wheel contents --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b949cc4..60f2eb1 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ author="Steven Stallion", author_email="sstallion@gmail.com", url="https://github.com/sstallion/sensorpush-api", - packages=find_packages(), + packages=find_packages(include=["sensorpush_api*"]), classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", From 2325bb2b080fbe592f9cf2877841d15b887b238c Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Thu, 14 Aug 2025 18:11:48 +0200 Subject: [PATCH 2/2] Add manifest file to fix build --- MANIFEST.in | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..55925f1 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +include options.json +include requirements.txt +include test-requirements.txt +include release-requirements.txt +graft test