You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Managing pyproject.toml's should be easier (needed for many ops)
The pyproject.toml is like the Cargo.toml of Rust. You're supposed to use Cargo to manage the manifest file (Cargo.toml). The goal would be to treat the pyproject.toml similarly with Huak.
Requirements
Simple API for read, write, etc.
Allow core pyproject.toml data and other tables (includes tool tables)
Make Git integration better with easier TOML ser.
Allow for workspace management
Details
Projects have manifest files named pyproject.toml (as specified in PEP 517). The data can consist of project metadata as well as tooling configuration. Here's Huak's pyproject.toml
This manifest identifies the workspace for the Huak project. It contains metadata about the project, it's authors, build configuration, and config for other tools like maturin. At the bottom is the [tool.huak] table (see PEP 518).
[tool.huak]
Huak's pyproject.toml implementation needs to expect a tool table, especially Huak's tool table. See:
Summary
Improve pyproject.toml management and robustness by implementing Huak's pyproject.toml library.
Motivation
The pyproject.toml is like the Cargo.toml of Rust. You're supposed to use Cargo to manage the manifest file (Cargo.toml). The goal would be to treat the pyproject.toml similarly with Huak.
Requirements
Details
Projects have manifest files named pyproject.toml (as specified in PEP 517). The data can consist of project metadata as well as tooling configuration. Here's Huak's pyproject.toml
This manifest identifies the workspace for the Huak project. It contains metadata about the project, it's authors, build configuration, and config for other tools like maturin. At the bottom is the
[tool.huak]
table (see PEP 518).[tool.huak]
Huak's pyproject.toml implementation needs to expect a tool table, especially Huak's tool table. See:
Example:
The text was updated successfully, but these errors were encountered: