From 65e1dac7a5a81ef5d177f6bd85a77fb730c03c50 Mon Sep 17 00:00:00 2001 From: dwr-psandhu Date: Fri, 20 Dec 2024 13:19:22 -0800 Subject: [PATCH] update setup.py and pyproject.toml to include package data and find packages --- pyproject.toml | 1 + setup.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6186a49..e6eff4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,7 @@ homepage = "https://github.com/dwr-psandhu/pyhecdss" [tool.setuptools.packages.find] where = ["pyhecdss"] +include = ["pyhecdss*"] [tool.setuptools] include-package-data = true diff --git a/setup.py b/setup.py index e1bf10a..f487e46 100755 --- a/setup.py +++ b/setup.py @@ -79,5 +79,7 @@ def read(*parts): setup( version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), + packages=find_packages(), + include_package_data=True, ext_modules=[pyheclib_module], )