
20 Oct
2017
20 Oct
'17
4:25 a.m.
On Oct 20, 2017, at 1:32 AM, Nick Coghlan ncoghlan@gmail.com wrote:
- Unlike setup.cfg & pyproject.toml, actual humans never touch it - it's written and read solely by software
This is wrong BTW, humans can and do effectively write entry_points.txt, it’s a supported feature of setuptools to do:
setuptools.setup( entry_points=“”” [my_cool_entrypoint] athing = the.thing:bar “””, )
This is documented and I have run into a number of projects that do this.