From f1f4af2447fe8a9dacfd7c2e9f76e02e788b255d Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Tue, 27 Feb 2024 22:47:11 -0500 Subject: [PATCH] Exclude tests from packages --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6a8542a..3b0898b 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def find_version(*file_paths): maintainer_email="kellrott@gmail.com", url="https://github.com/ohsu-comp-bio/py-tes", license="MIT", - packages=find_packages(), + packages=find_packages(exclude=["tests*"]), python_requires=">=3.7, <4", install_requires=read("requirements.txt").splitlines(), zip_safe=True,