Permanent CLI command without using python first.
Opened this issue · 0 comments
eivl commented
Today we have to invoke the python
command to use the CLI tool.
python main.py movie-rating 'Into the spiderverse'
I would like to use a fixed command like awsome-user-cli
awsome-user-cli movie-rating 'Into the spiderverse'
I don't like the actual name awsome-user-cli
it is just a placeholder.
Potential solutions:
- Use Poetry #10
- Use setuptools #11
1: Poetry is a third party, nice to use, easy to learn but ads more complexity to the project.
2: setuptools ships with python, but it is a bit hard to understand and learn.