Build backend: Add reference docs and schema (#12803)

Add reference documentation and schema integration for the uv build
backend. The reference documentation comes with a preview note upfront.
This commit is contained in:
konsti 2025-04-21 12:27:49 +02:00 committed by GitHub
parent 2b96dbdd49
commit da09ece8a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 559 additions and 171 deletions

View file

@ -1,9 +1,11 @@
mod metadata;
mod serde_verbatim;
mod settings;
mod source_dist;
mod wheel;
pub use metadata::{check_direct_build, PyProjectToml};
pub use settings::{BuildBackendSettings, WheelDataIncludes};
pub use source_dist::{build_source_dist, list_source_dist};
pub use wheel::{build_editable, build_wheel, list_wheel, metadata};