An open API service indexing awesome lists of open source software.

https://github.com/joerick/python-ctypes-package-sample

An example Python package that builds cross-Python wheels via ctypes
https://github.com/joerick/python-ctypes-package-sample

Last synced: 6 months ago
JSON representation

An example Python package that builds cross-Python wheels via ctypes

Awesome Lists containing this project

README

          

# Python ctypes example project

This is an example Python package that builds ctypes-based cross-Python wheels
using cibuildwheel.

These wheels have the wheel tag `py3-none-PLATFORM`, meaning that one wheel
will work for any version of Python 3, including PyPy. So you'll end up with
one wheel per OS/architecture, which is considerably fewer than building one
for each Python.

Thanks to @himbeles for some of the code from their [sample ctypes
project](https://github.com/himbeles/ctypes-example)