Skip to content

Commit a4fe8e3

Browse files
authored
Add package data configuration for eval_protocol in pyproject.toml (#32)
- Include Vite app distribution files in the package data for eval_protocol, ensuring proper packaging of frontend assets.
1 parent c5a425d commit a4fe8e3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ huggingface = [
111111
]
112112
adapters = [
113113
"langfuse>=2.0.0",
114-
"datasets>=2.0.0",
114+
"datasets>=2.0.0",
115115
"transformers>=4.0.0",
116116
]
117117

@@ -122,6 +122,9 @@ eval-protocol = "eval_protocol.cli:main"
122122
[tool.setuptools.packages.find]
123123
include = ["eval_protocol*", "development*", "vendor*"]
124124

125+
[tool.setuptools.package-data]
126+
"eval_protocol" = ["../vite-app/dist/**/*"]
127+
125128
[tool.versioneer]
126129
VCS = "git"
127130
style = "pep440"

0 commit comments

Comments
 (0)