From 32872259c2fc300f58eaea14aeffa3600a447783 Mon Sep 17 00:00:00 2001 From: "William (Lindy) Lindstrom" Date: Tue, 7 Nov 2023 17:36:41 +0000 Subject: [PATCH] specify _all_ tom_* modules to package --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 66763c78f..010e917f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "tomtoolkit" # must match PyPI package name packages = [ # tell poetry build that the repo is named tom_base (which != name, above) - { include="tom_base", from="." }, + { include="tom_*", from="." }, ] version = "0.0.0" # version supplied by poetry-dynamic-versioning description = "TOM Toolkit and base modules"