rbufr/rbufrp/pyproject.toml
Tsuki d3f020b6c3
Some checks failed
CI / Rust Tests (push) Waiting to run
CI / Python Tests (macos-latest, 3.11) (push) Waiting to run
CI / Python Tests (macos-latest, 3.13) (push) Waiting to run
CI / Python Tests (macos-latest, 3.8) (push) Waiting to run
CI / Python Tests (ubuntu-latest, 3.11) (push) Waiting to run
CI / Python Tests (ubuntu-latest, 3.13) (push) Waiting to run
CI / Python Tests (ubuntu-latest, 3.8) (push) Waiting to run
CI / Python Tests (windows-latest, 3.11) (push) Waiting to run
CI / Python Tests (windows-latest, 3.13) (push) Waiting to run
CI / Python Tests (windows-latest, 3.8) (push) Waiting to run
CI / Check Formatting (push) Waiting to run
Build Wheels (cibuildwheel) / Build wheels on Linux (aarch64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on Linux (x86_64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on macOS (arm64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on macOS (x86_64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on Windows (push) Has been cancelled
Build Wheels (cibuildwheel) / Build source distribution (push) Has been cancelled
Build Wheels (cibuildwheel) / Publish to GitHub Release (push) Has been cancelled
sync
2026-01-08 01:27:20 +08:00

33 lines
693 B
TOML

[project]
name = "rbufrp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Tsuki", email = "qwin7989@gmail.com" }]
requires-python = ">=3.11"
dependencies = []
[project.scripts]
rbufrp = "rbufrp:main"
[tool.maturin]
module-name = "rbufrp._core"
python-packages = ["rbufrp"]
python-source = "src"
include = [
{ path = "../rbufr/tables", format = "sdist" },
{ path = "../rbufr/tables", format = "wheel" },
]
[tool.uv]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "src/**/*.rs" },
{ file = "Cargo.toml" },
{ file = "Cargo.lock" },
]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"