I am writing an App with Kivy and followed this Tutorial. Everything runs fine, but I don't like the folder structure. I tried the one-folder and one-file approach, but here (in Features) it lists a third option of customizing it. I would like my app to be packaged in a way that all of its files and folder structure remains as it was. Additionally I want the generated exe to be on the root of my app and all the dependencies/libraries to either be in the lib folder of my app, or packaged with the exe. I have read here about it, but couldn't find anything. Also a search on Google didn't give me much.
This is how I want want it to look like:
- folder
- somecode.py
- othercode.py
- lib
- dependency1
- dependency2
- ...
- main.py
- myapp.exe