mirror of https://github.com/astral-sh/uv
34 lines
890 B
TOML
34 lines
890 B
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "puffin-alpha"
|
|
version = "0.0.4"
|
|
authors = [{ name = "Puffin" }]
|
|
requires-python = ">=3.8"
|
|
keywords = []
|
|
classifiers = [
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
]
|
|
readme = "README.md"
|
|
|
|
[project.urls]
|
|
Repository = "https://pypi.org/project/puffin-alpha/"
|
|
Documentation = "https://pypi.org/project/puffin-alpha/"
|
|
Changelog = "https://pypi.org/project/puffin-alpha/"
|
|
|
|
[tool.maturin]
|
|
bindings = "bin"
|
|
manifest-path = "crates/puffin/Cargo.toml"
|
|
module-name = "puffin"
|
|
python-source = "python"
|
|
strip = true
|
|
include = ["rust-toolchain.toml"]
|