From edb8648f7847210dd7278fd3e930afbcada39297 Mon Sep 17 00:00:00 2001 From: Nick Hermes Date: Sat, 20 Jun 2026 02:32:07 +0000 Subject: [PATCH] build: fix host editable install packaging --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4285686..bc7de7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["setuptools>=68.0", "wheel"] +build-backend = "setuptools.build_meta" + [project] name = "polisher-control-host" version = "0.1.0" @@ -8,6 +12,10 @@ dependencies = [] [project.optional-dependencies] dev = ["pytest>=8", "jsonschema>=4"] +[tool.setuptools.packages.find] +where = ["host"] +include = ["polisher_control*"] + [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["host"]