Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nightlark/tippecanoe-pypi
pip install tippecanoe. Pre-compiled tippecanoe Python wheels for PyPI.
https://github.com/nightlark/tippecanoe-pypi
hacktoberfest
Last synced: 3 days ago
JSON representation
pip install tippecanoe. Pre-compiled tippecanoe Python wheels for PyPI.
- Host: GitHub
- URL: https://github.com/nightlark/tippecanoe-pypi
- Owner: nightlark
- License: bsd-3-clause
- Created: 2024-02-16T07:36:39.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T18:39:04.000Z (6 days ago)
- Last Synced: 2024-11-08T19:28:02.855Z (6 days ago)
- Topics: hacktoberfest
- Language: CMake
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
tippecanoe Python Distributions
===============================[![PyPI](https://img.shields.io/pypi/v/tippecanoe.svg)](https://pypi.org/project/tippecanoe)
A project that packages [tippecanoe](https://github.com/felt/tippecanoe) as a Python package, enabling `tippecanoe` to be installed from PyPI:
```sh
pip install tippecanoe
```or used as part of `build-system.requires` in a pyproject.toml file:
```toml
[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](https://github.com/nightlark/tippecanoe-pypi)
[tippecanoe Homepage](https://github.com/felt/tippecanoe)
[tippecanoe Source Code](https://github.com/felt/tippecanoe)
[tippecanoe License](https://github.com/felt/tippecanoe/blob/main/LICENSE.md): BSD 2-Clause "Simplified" License
Installing tippecanoe
=====================tippecanoe can be installed by pip with:
```sh
pip install tippecanoe
```or:
```sh
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 with pipx
===============Using `pipx run tippecanoe ` will run tippecanoe without any install step, as long as the machine has pipx installed (which includes GitHub Actions runners).
Using with pyproject.toml
=========================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.
```toml
[build-system]
requires = ["tippecanoe"]
```License
=======The code for this project (that compiles tippecanoe and creates Python wheels) is covered by the [3-Clause BSD License](https://opensource.org/license/bsd-3-clause/). All new contributions must be made under this license.
tippecanoe is distributed under the [BSD 2-Clause "Simplified" License](https://github.com/felt/tippecanoe/blob/main/LICENSE.md). 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](https://github.com/felt/tippecanoe)
SPDX-License-Identifier: BSD-3-Clause
LLNL-CODE-2000597