You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!)
Read here: https://the-hitchhikers-guide-to-packaging.readthedocs.io/en/latest/creation.html
Most important bit being the
requirements.txt
file to track dependencies, after which you can just runpip 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 step instead of using a batch file, and stuff like that.The text was updated successfully, but these errors were encountered: