lucasb-eyer / pydensecrf

Python wrapper to Philipp Krähenbühl's dense (fully connected) CRFs with gaussian edge potentials.
MIT License
1.93k stars 411 forks source link

Fix Cython build dependency with pyproject.toml #103

Closed li-plus closed 3 years ago

li-plus commented 3 years ago

Specify Cython as a build system dependency in pyproject.toml, so that pip will install Cython before running setup.py, according to PEP 518. Tested with command pip install git+https://github.com/li-plus/pydensecrf.git without having Cython installed. This really solves Issue #78.

lucasb-eyer commented 3 years ago

Thank you!