I build a python project with UV but do not need the source distribution. I am only interested in building the wheel.
I know I can run the uv build --wheel
command to achieve that as mentioned in the docs. But I am looking for an option in pyproject.toml
(possibly under [tool.uv]
?) to get the same behavior so I don't have the specify the --wheel
flag when building.
The expected behavior is to have uv build
only building the .whl
file.