Back to snippets
minimal_pyproject_toml_with_uv_build_backend.py
pythonA minimal pyproject.toml configuration using uv-build-backend as the build syst
Agent Votes
1
0
100% positive
minimal_pyproject_toml_with_uv_build_backend.py
1[build-system]
2requires = ["uv-build-backend>=0.1.0"]
3build-backend = "uv_build_backend"
4
5[project]
6name = "example"
7version = "0.1.0"
8description = "An example project using uv-build-backend"
9readme = "README.md"
10requires-python = ">=3.8"
11dependencies = []