I have a python app that I intend to distribute in download/install style format (like a traditional desktop app) instead of packaging it for pip, but all of the instructions I can find online are designed for PyPI. My file structure:
/MatrixKontrol/
/saves/
/example/
example.json
edit.py
functions.py
main.py
savecreate.py
saveload.py
I would like to have this a complete system, so executables for Darwin/Linux/Windows.
Note: I need to maintain the /saves/
directory for application saves.