We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a791a59 commit 9fb0dbeCopy full SHA for 9fb0dbe
1 file changed
pyproject.toml
@@ -75,6 +75,7 @@ version-file = "src/hyperview/_version.py"
75
[tool.hatch.build.targets.wheel]
76
packages = ["src/hyperview"]
77
# Include frontend static assets (pre-built before packaging)
78
+# artifacts is for untracked files that exist; force-include ensures they're packaged
79
artifacts = ["src/hyperview/server/static/**"]
80
81
[tool.hatch.build.targets.sdist]
@@ -83,6 +84,8 @@ include = [
83
84
"/README.md",
85
"/LICENSE",
86
]
87
+# Include built frontend for reproducible source builds
88
+artifacts = ["src/hyperview/server/static/**"]
89
90
[tool.ruff]
91
line-length = 100
0 commit comments