Most important bit being the requirements.txt file to track dependencies, after which you can just run pip install -r requirements.txt in order to install all the requirements (and even put your package up on pypi!)
But the setup.py part can also be nice. You can have it do the [pyinstaller ste
Read here: https://the-hitchhikers-guide-to-packaging.readthedocs.io/en/latest/creation.html
Most important bit being the
requirements.txtfile to track dependencies, after which you can just runpip install -r requirements.txtin order to install all the requirements (and even put your package up on pypi!)But the
setup.pypart can also be nice. You can have it do the [pyinstaller ste