Say I have a directory with some .py files, and some directories with other .py files
That directory is called my_program
my-program
-- dir1
-- file.py
-- dir2
I want to be able to use my_program's defined modules from any directory, say by doing
>>> import my_program
>>> myprogram.dir1.file.function()
or by doing
>>> import my_program.dir1.file
>>> file.function()
I also want to "install" my module for systemwide acessibility using pip