I've created application in python for linux and because it grown I grouped functions into separate files which main script imports. Now program is done and I want to share it with the world, I also want installation of this program to be as easy as typing one command. I know that I can use setuptools to move executable to /usr/bin but where I put rest of my files? Which directory in system will be best suited for that?
Asked
Active
Viewed 52 times
0
-
Use `PyPi` to package your program – lamo_738 Apr 16 '19 at 18:59
-
Everything is written in the documentation https://setuptools.readthedocs.io/en/latest/ – boreq Apr 16 '19 at 19:02
-
Also useful is https://stackoverflow.com/questions/15746675/how-to-write-a-python-module-package and https://python-packaging.readthedocs.io/en/latest/. – tk421 Apr 16 '19 at 19:09