foundry icon indicating copy to clipboard operation
foundry copied to clipboard

`models/rfd3/configs/datasets/val/benchmarks` Not Found

Open hongningzhang-x opened this issue 3 weeks ago • 3 comments

Hello, When I tried installing using the repository source code, I found that the file mentioned above pointed to a non-public file path. I also noticed that the file was not present when installing using the PyPI repository. I suggest removing this file directly from the repository, or adding an exclude field to pyproject.toml.

[tool.hatch.build.targets.sdist]
exclude = [
  "models/rfd3/configs/datasets/val/benchmarks"
]

[tool.hatch.build.targets.wheel]
exclude = [
  "models/rfd3/configs/datasets/val/benchmarks"
]

hongningzhang-x avatar Dec 04 '25 02:12 hongningzhang-x

models/rfd3/configs/datasets/val/benchmarks'

  hint: This usually indicates a problem with the package or the build environment.

GanQiao1990 avatar Dec 04 '25 02:12 GanQiao1990

yes, similar problem, pyproject.toml is missing in models

wkai24213-source avatar Dec 04 '25 03:12 wkai24213-source

yes, similar problem, pyproject.toml is missing in models

In fact, there is no need to provide pyproject.toml separately in each model. It is already included in the project configuration of foundry. It's just a mistake in readme. Just use 'uv pip install -e.[all]', but the above-mentioned file can indeed be deleted.

GCS-ZHN avatar Dec 04 '25 04:12 GCS-ZHN