From ba3250cd939a5e088972a589b5105b0e75edfb4f Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 27 Feb 2023 20:00:41 -0500 Subject: [PATCH] =?UTF-8?q?Do=20not=20install=20=E2=80=9Cschema=5Fsource?= =?UTF-8?q?=E2=80=9D=20to=20site-packages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b53f5842a..fbd4fc8f7 100755 --- a/setup.py +++ b/setup.py @@ -59,7 +59,19 @@ def read_requirements(req="base.txt"): license="Apache License 2.0", # Exclude all but the code folders packages=find_packages( - exclude=("bin", "bin.*", "tests", "tests.*", "integration", "integration.*", "docs", "examples", "versions") + exclude=( + "bin", + "bin.*", + "docs", + "examples", + "integration", + "integration.*", + "schema_source", + "schema_source.*", + "tests", + "tests.*", + "versions", + ) ), license_files=( "LICENSE",