I currently writing a python cli application that takes in a CSV file as an argument and various options from the cli.
python .\test.py data.csv
usage: test.py [-h] [-v | -q] [-o] filepath
I want to alias or replace the python ./test in the cli with another word so as to look like a command like angular or git cli. For example rexona data.csv -o.
I want to do that on both Windows and Linux so as I can publish it as a PyPI distribution.
Thank you