mlt-py 0.1.11

Python bindings for MapLibre Tile (MLT) format via PyO3
Documentation
1
2
3
4
5
6
7
8
use pyo3_stub_gen::Result;

/// purely a helper bin to generate the type stubs by CI
fn main() -> Result<()> {
    let stub = mlt_py::stub_info()?;
    stub.generate()?;
    Ok(())
}