A project that packages tippecanoe as a Python package, enabling tippecanoe
to be installed from PyPI:
pip install tippecanoe
or used as part of build-system.requires
in a pyproject.toml file:
[build-system]
requires = ["tippecanoe"]
After installation, the Python bin directory for console scripts may need to be added to your path (or if installing in a venv, activate the venv).
Commands installed are: tippecanoe
, tile-join
, tippecanoe-decode
, tippecanoe-enumerate
, tippecanoe-json-tool
, and tippecanoe-overzoom
.
PyPI package versions will follow the major.minor.patch
version numbers of tippecanoe releases.
Binary wheels for macOS and Linux for most CPU architectures supported on PyPI are provided. ARM wheels for Raspberry Pi available at https://www.piwheels.org/project/tippecanoe/.
tippecanoe PyPI Package Homepage
tippecanoe License: BSD 2-Clause "Simplified" License
tippecanoe can be installed by pip with:
pip install tippecanoe
or:
python -m pip install tippecanoe
Building from the source dist package requires internet access in order to download a copy of the tippecanoe source code.
Using pipx run tippecanoe <args>
will run tippecanoe without any install step, as long as the machine has pipx installed (which includes GitHub Actions runners).
tippecanoe can be added to the build-system.requires
key in a pyproject.toml file for building Python extensions that use tippecanoe to when building wheels.
[build-system]
requires = ["tippecanoe"]
The code for this project (that compiles tippecanoe and creates Python wheels) is covered by the 3-Clause BSD License. All new contributions must be made under this license.
tippecanoe is distributed under the BSD 2-Clause "Simplified" License. This includes the tippecanoe binaries included in the Python wheels generated by this project. For more information about tippecanoe, visit https://github.com/felt/tippecanoe
SPDX-License-Identifier: BSD-3-Clause
LLNL-CODE-2000597