# python-cpp-skel **Repository Path**: mirrors_mapbox/python-cpp-skel ## Basic Information - **Project Name**: python-cpp-skel - **Description**: Skeleton for bindings to C++ libraries for Python using pybind11 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README python_cpp_skel =============== A python skeleton project built with [pybind11](https://github.com/pybind/pybind11) and [mason](https://github.com/mapbox/mason/). [![Build Status](https://travis-ci.org/mapbox/python-cpp-skel.svg?branch=master)](https://travis-ci.org/mapbox/python-cpp-skel) Installation ------------ Clone this repository then run in the directory: ``` pip install . ``` If you are doing development on this library run: ``` pip install -e . ``` Testing ------- Testing uses [pytest](https://docs.pytest.org/en/latest/). If you do not have it installed run: ``` pip install pytest ``` then simply run: ``` pytest ``` Example ------- ```python import python_cpp_skel python_cpp_skel.add(1, 2) ```