mirror of
https://github.com/visioncortex/vtracer.git
synced 2026-09-26 05:51:21 -07:00
The `vtracer` package never declared a `readme`, so its PyPI page rendered an empty description. Point `[project].readme` at the crate's README, and mirror it in Cargo.toml alongside the core crate's convention. Pin the documented install to 1.0.0a2 while the 1.0 line is pre-release: `--pre` would resolve it, but a bare `pip install vtracer` still lands on 0.6.15, whose cp314 wheels segfault on any keyword argument (pyo3 0.19 predates CPython 3.14 moving `PyTupleObject::ob_item`, #124).
28 lines
854 B
TOML
28 lines
854 B
TOML
[build-system]
|
|
requires = ["maturin>=1.5,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "vtracer"
|
|
description = "Raster to vector graphics converter — Python bindings for the vtracer framework."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "MIT OR Apache-2.0" }
|
|
authors = [{ name = "Chris Tsang", email = "tyt2y7@gmail.com" }]
|
|
keywords = ["svg", "vectorization", "raster", "computer-graphics"]
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Multimedia :: Graphics",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[project.urls]
|
|
Homepage = "http://www.visioncortex.org/vtracer"
|
|
Repository = "https://github.com/visioncortex/vtracer/"
|
|
|
|
[tool.maturin]
|
|
# Pure-Rust extension module; the compiled library is imported as `vtracer`.
|
|
module-name = "vtracer"
|
|
features = ["pyo3/extension-module"]
|