I am writing a game framework. Here is my current file structure:
src/
framework/
__init__.py
util.py
render.py
game.py
pong.py
I want to be able to simply do import game or import render directly from the pong.py file. What's the best way to accomplish this? Initially the util.py, render.py, game.py modules were in the src folder but I decided to put them into their separate folder for the sake of organization. I am quite new at packaging conventions so I don't know if this would be the recommended way of doing things.