From 86cd7e550dc52c476d1ced8269c0d108396b8064 Mon Sep 17 00:00:00 2001 From: Alastair Porter Date: Thu, 12 Sep 2024 11:40:07 +0200 Subject: [PATCH] Correctly add smstools package name --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7680eb28..44fcf459 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "smstools-test" authors = [ { name="Music Technology Group, Universitat Pompeu Fabra", email="mtg-info@upf.edu" }, ] -version = "0.99" +version = "0.99.1" description = "Sound analysis/synthesis tools for music applications" readme = "README.md" requires-python = ">=3.9" @@ -25,9 +25,8 @@ Homepage = "https://github.com/mtg/sms-tools" Issues = "https://github.com/mtg/sms-tools/issues" [tool.setuptools.packages.find] -where = ["smstools"] -include = ["models", "transformations"] -exclude = ["models.interface", "transformations.interface"] +include = ["smstools.models", "smstools.transformations"] +exclude = ["smstools.models.interface", "smstools.transformations.interface"] [build-system]