Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

mondeja/cpolf

Repository files navigation

polf

PyPI PyPI Python versions License Documentation status Tests Wheels

Simple library written with the Python C API to calculate points on lines. It does not perform any checks on the passed data, but rather follows the GIGO processing pattern.

I have written it with the main purpose of learning, but it may be useful in some situation or it can serve as a reference to get you started in the Python C API and building multiplatform wheels using cibuildwheel and Github Actions. If it has been useful to you, do not hesitate to leave a star.

Install

pip install polf

Useful links

Contributing (Linux)

Create a virtual environment, initialize it and install development dependencies:

python -m virtualenv venv
source venv/bin/activate
python -m pip install -e .[dev]
pre-commit install