I want to make a distributable python module, so I want to make users call functions inside of my module via just calling package name.
e.g.
/my_package/
/my_package/__init__.py
/my_package/src/
/my_package/src/__init__.py
/my_package/src/my_module.py
and, the contents of mymodule.py:
def test(): print('hello!')
in this case, I want to let users use my module like:
>>> import mypackage as mp
>>> mp.test()
hello!
just like tensorflow, numpy, etc. !!!
How should I configure __init__.py file and path info??