f9154e8297
## Summary This PR adds a release workflow powered by `cargo-dist`. It's similar to the version that's PR'd in Ruff (https://github.com/astral-sh/ruff/pull/9559), with the exception that it doesn't include the Docker build or the "update dependents" step for pre-commit.
21 lines
410 B
TOML
21 lines
410 B
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "puffin-alpha"
|
|
version = "0.0.1"
|
|
authors = [{ name = "Puffin" }]
|
|
requires-python = ">=3.7"
|
|
keywords = []
|
|
classifiers = []
|
|
readme = "README.md"
|
|
|
|
[tool.maturin]
|
|
bindings = "bin"
|
|
manifest-path = "crates/puffin-cli/Cargo.toml"
|
|
module-name = "puffin"
|
|
python-source = "python"
|
|
strip = true
|
|
include = ["rust-toolchain.toml"]
|