With this structure:
my-project/
|--- useful_functions.py/
|--- subfolder/
|--- script.py
How to allow script.py to access the useful_functions.py (one level up), preferably NOT using sys.path for this?
My cousin says I should simple put my-project folder into anaconda's site-packages and then use import my-project.useful_functions, is that good practice?