From 326f3e2686f6c7239bce960515e965a292f16929 Mon Sep 17 00:00:00 2001 From: Jennifer Fu Date: Fri, 21 Nov 2025 02:33:45 -0500 Subject: [PATCH 1/2] fixed tools installation --- MANIFEST.in | 5 ++++- pyproject.toml | 7 ++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9203697..b8efb17 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,5 @@ include *.txt -recursive-include docs *.txt \ No newline at end of file +recursive-include docs *.txt +recursive-include maxpylang/tools * +recursive-include maxpylang/data * +include README.md \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index b3ebd85..3931df2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,8 +27,9 @@ dependencies = [ Homepage = "http://pypi.python.org/pypi/MaxPyLang/" [tool.setuptools] -packages = ["maxpylang"] +include-package-data = true -[tool.setuptools.package-data] -maxpylang = ["data/**/*"] +[tool.setuptools.packages.find] +where = ["."] +include = ["maxpylang*"] From 799037e6ba99f259b144e29d09a785065a0ee95a Mon Sep 17 00:00:00 2001 From: Jennifer Fu Date: Fri, 21 Nov 2025 02:47:29 -0500 Subject: [PATCH 2/2] updated ver --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3931df2..5cb69d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maxpylang" -version = "0.1.0" +version = "0.1.1" description = "Python API for making MaxMSP patches." readme = "README.md" requires-python = ">=3.9"