I have a Python package that contains a script:
pip show -f my-package
Results in
my-package-path/script.py
I would like to execute script.py, something like:
pip install my-package
python3 my-package-path.script.py
But it doesn't work. What's the standard way of doing this?