Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,13 @@ packages = ["src"]
[tool.hatch.build.targets.wheel.force-include]
"web/dist" = "src/web/dist"

# The sdist is gitignore-driven and would otherwise drop the built Web UI
# (web/dist is gitignored). Force-include it so the source distribution is
# self-contained and `pip install` from sdist (or --no-binary) still ships
# the UI assets without requiring a Node toolchain at install time.
[tool.hatch.build.targets.sdist.force-include]
"web/dist" = "web/dist"

[tool.mypy]
python_version = "3.11"
strict = true
Expand Down
Loading