Skip to content

Commit 4d00cff

Browse files
chore: Do not install “schema_source” to site-packages (#2973)
1 parent be0ddc2 commit 4d00cff

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

setup.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,19 @@ def read_requirements(req="base.txt"):
5959
license="Apache License 2.0",
6060
# Exclude all but the code folders
6161
packages=find_packages(
62-
exclude=("bin", "bin.*", "tests", "tests.*", "integration", "integration.*", "docs", "examples", "versions")
62+
exclude=(
63+
"bin",
64+
"bin.*",
65+
"docs",
66+
"examples",
67+
"integration",
68+
"integration.*",
69+
"schema_source",
70+
"schema_source.*",
71+
"tests",
72+
"tests.*",
73+
"versions",
74+
)
6375
),
6476
license_files=(
6577
"LICENSE",

0 commit comments

Comments
 (0)