Hello,
I'm writing setup.py for my Python package. I use python 3.4 and setuptools because in official The documentation says that distutils is now legacy.
My package uses the console program mytools.exe. When installing the package, I need to download the latest version of this console program.
In official the setuptools documentation I don’t see any parameters that allow you to specify a custom function in which I could write the download mytools.exe.
Are there standard ways to solve my problem?