Suppose my package has the following structure:
.
├── LICENSE.txt
├── MANIFEST
├── MANIFEST.in
├── README
├── README.md
├── bin
│ └── myscript.py
├── dist
│ ├── pypack2-0.1.1.tar.gz
│ └── pypack2-0.1.2.tar.gz
├── pypack2
│ ├── Pypack.py
│ └── __init__.py
├── setup.cfg
└── setup.py
4 directories, 14 files
So I have made a myscript.py
file that could be useful for direct use in shell, the question is: How can I make sure that after pip install pypack
, myscript.py
will be available to the user, i.e. in their $PATH
?