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
- Host: GitHub
- URL: https://github.com/joerick/python-ctypes-package-sample
- Owner: joerick
- License: apache-2.0
- Created: 2022-07-05T16:45:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T12:38:24.000Z (over 1 year ago)
- Last Synced: 2025-06-12T23:05:02.578Z (7 months ago)
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)