> On Oct 20, 2017, at 1:32 AM, Nick Coghlan <ncogh...@gmail.com> wrote:
> 
> 3. 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.
_______________________________________________
Distutils-SIG maillist  -  Distutils-SIG@python.org
https://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to