<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Oct 20, 2017, at 1:32 AM, Nick Coghlan <<a href="mailto:ncoghlan@gmail.com" class="">ncoghlan@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">3. Unlike setup.cfg & pyproject.toml, actual humans never touch it - it's written and read solely by software</span></div></blockquote></div><br class=""><div class="">This is wrong BTW, humans can and do effectively write entry_points.txt, it’s a supported feature of setuptools to do:</div><div class=""><br class=""></div><div class="">setuptools.setup(</div><div class="">    entry_points=“””</div><div class="">        [my_cool_entrypoint]</div><div class="">        athing = the.thing:bar</div><div class="">    “””,</div><div class="">)</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">This is documented and I have run into a number of projects that do this.</div></body></html>