Skip to content

Commit d4b27f4

Browse files
authored
0.40 - fix packaging error in 0.39 (#1750)
jorwoods/package install fix (jorwoods/package install fix #1747) Revert "refer to single package entrypoint (refer to single package entrypoint #1739)" This reverts commit 043efa1. fix: make pyproject.toml more explicity in what is included chore: remove commented out config Co-authored-by: Jordan Woods 13803242+jorwoods@users.noreply.github.com
1 parent 40aa750 commit d4b27f4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,14 @@ repository = "https://github.com/tableau/server-client-python"
3535
test = ["black==24.10", "build", "mypy==1.4", "pytest>=7.0", "pytest-cov", "pytest-subtests",
3636
"pytest-xdist", "requests-mock>=1.0,<2.0", "types-requests>=2.32.4.20250913"]
3737

38+
[tool.setuptools.package-data]
39+
# Only include data for tableauserverclient, not for samples, test, docs
40+
tableauserverclient = ["*"]
41+
3842
[tool.setuptools.packages.find]
39-
where = ["tableauserverclient"]
43+
where = ["."]
44+
include = ["tableauserverclient*"]
45+
4046
[tool.setuptools.dynamic]
4147
version = {attr = "versioneer.get_version"}
4248

0 commit comments

Comments
 (0)