From 6fac58404a4da994f4afd9e1a2c8293712c2146a Mon Sep 17 00:00:00 2001 From: WillB97 Date: Fri, 29 Sep 2023 23:38:52 +0100 Subject: [PATCH] Avoid putting the test data in the wheel --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 490a947..34f55ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,9 +49,17 @@ april_vision = "april_vision.cli:main" [project.urls] Repository = "https://github.com/WillB97/april_vision" +[tool.setuptools] +include-package-data = false + [tool.setuptools.packages] find = {} +[tool.setuptools.package-data] +"*" = ["README.md", "LICENSE"] +"april_vision" = ["py.typed"] +"april_vision.calibrations" = ["*.xml"] + [build-system] requires = ["setuptools>=60", "wheel", "setuptools_scm>=8"] build-backend = "setuptools.build_meta"