From 0fb4c232ecb22d2dd9ebe207a192ef9ea52f9a43 Mon Sep 17 00:00:00 2001 From: Aidan Chalk <3043914+LonelyCat124@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:17:13 +0000 Subject: [PATCH] #2813 added a bit more to pyproject.tomwl --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 33ba17f945..a851a5802b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,10 +99,17 @@ script-files = [ ] [tool.setuptools.packages.find] -where = ["src", "examples", "tutorial", "lib"] +where = ["src", "examples", "tutorial", "lib", "config", "share"] exclude = [ "psyclone.tests", "psyclone.tests.test_files", "psyclone.tests.*", ] namespaces = false + +[tool.setuptools.package-data] +examples = ["*.*90", "*.py", "*.md", "*.c", "*.cl", "Makefile", "*.mk"] +tutorial = ["*.ipynb"] +lib = ["*.*90", "*.sh", "*.py", "*.md", "Makefile", "*.mk", "*.jinja", "*.doxyfile"] +config = ["psyclone.cfg"] +share = ["psyclone"]