I'm working on Windows and developing an application that will be distributed to end users.
I have one setupttools distribution that contains a nandful of python packages. This distribution declares some console_scripts entrypoints that point to various functions in my code.
One of these entrypoints is destined to be an updater application. I currently am launching it as a child process using subprocess and specifying the full path to a python script.
What i'd like to do instead is use the generated setuptools entrypoint stub executable as the subprocess to launch.
I can get the entrypoint to my subapplication via something like:
import pkg_resources
updatefunc = pkg_resources.load_entry_point('iti_reporter', 'console_scripts', 'my_update_ui')
which gives me the python function for it. Is there any way to go from this function to the generated setuptools script wrapper that resides in my venv?
Thanks for the assistance.
Figured it out by just doing what the script would have done anyway: