adafruit / cookiecutter-adafruit-circuitpython

Cookiecutter template for Adafruit's CircuitPython libraries.
MIT License
22 stars 37 forks source link

(Nearly) replacing setup.py with pyproject.toml and setup.cfg #119

Closed dhalbert closed 2 years ago

dhalbert commented 3 years ago

PEP517 and PEP518 create a new mechanism for installation that does not need a setup.py: https://snarky.ca/what-the-heck-is-pyproject-toml/

(but see minor caveat at the end about editable installs)

Related to #118.

tannewt commented 3 years ago

FWIW, I've been liking flit with pyproject.toml. https://flit.readthedocs.io/en/latest/

tekktrik commented 2 years ago

Resolved by #195