Open DaanHolleman opened 1 month ago
Manual conversion should be pretty easy as the setup.py is pretty small. The following needs to be in the pyproject.toml:
[build-system]
# XXX: If your project needs other packages to build properly, add them to this list.
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
Newer versions of pip will no longer allow for editable installs using a setup.py script. Switching to a pyproject.toml instead of a setup.py script seems like the best decision.
Message from pip:
Comment by ichard26: