From 3c11e04bee214bab84c716b857ce8b9785428354 Mon Sep 17 00:00:00 2001 From: Steve Zeltmann Date: Wed, 3 Jan 2024 09:04:28 -0800 Subject: [PATCH 1/2] package logo file correctly --- pyproject.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 64c32a3..203b568 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,4 +33,13 @@ py4DGUI = "py4D_browser.runGUI:launch" "Bug Tracker" = "https://github.com/py4dstem/py4D-browser/issues" [tool.pyright] -venv = "py4dstem" \ No newline at end of file +venv = "py4dstem" + +[tool.setuptools] +include-package-data = true + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.setuptools.package-data] +py4D_browser = ["*.png"] \ No newline at end of file From 6505f7835911b6ca64e57b4359da24892f309fb6 Mon Sep 17 00:00:00 2001 From: Steve Zeltmann Date: Wed, 3 Jan 2024 09:06:03 -0800 Subject: [PATCH 2/2] minor version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 203b568..a654480 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "py4D_browser" -version = "0.99999" +version = "0.999995" authors = [ { name="Steven Zeltmann", email="steven.zeltmann@lbl.gov" }, ]