diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7bd0740..31b0b7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ path = "bs4/__init__.py" [tool.hatch.build.targets.sdist] include = [ - # The module itself. + # The module itself, and its unit tests. "/bs4/**/*.py", "/bs4/**/*.testcase", @@ -79,3 +79,11 @@ include = [ "/doc.ko/index.css", "/doc.ko/index.html", ] + + +[tool.hatch.build.targets.wheel] +include = [ + # The module itself, and its unit tests. + "/bs4/**/*.py", + "/bs4/**/*.testcase", +]
\ No newline at end of file |