tim-gromeyer / html2md

Transform your HTML into clean, easy-to-read markdown with html2md.
https://tim-gromeyer.github.io/html2md/
MIT License
21 stars 2 forks source link

BLD: Use scikit-build for Python packaging #100

Closed DWesl closed 3 months ago

DWesl commented 3 months ago

Scikit-build (technically the rewrite scikit-build-core) is built on CMake, which would seem to mesh well with the rest of the project. This also gets the python bindings built on my platform.

Building the python packages changes from python setup.py sdist bdist_wheel to python -m build ., though python -m pip install . will still work fine.

tim-gromeyer commented 3 months ago

Thank you for your submission!

Before merging this, I need to test how well it integrates with the build pipeline (.github/workflows/wheels.yml) and if it need modification

tim-gromeyer commented 3 months ago

Seems to integrate well, lets merge