setuptools - Create a list of console_scripts defined in a Python package -
i'm using setup_tools , setup.py distribute package of tools. face of package user sees collection of command line scripts installed using console_scripts entry point.
i have additional script user can execute see list of console_scripts package has installed.
is there principled way of doing this? 1 simple way copy list 'console_scripts' entry in setup.py, going error prone list has updated when package modified.
my current solution read setup.py script , parse console_scripts entry. not pythonic.
hence question if there principled way this. thanks!
Comments
Post a Comment