Closed aroberge closed 2 years ago
Instead of writing
python -m ideas ...
make it possible to write
ideas ...
Note that instead of python, in some systems the user might have to write python3 or py; this requires additional information in the documentation which might be confusing. By having an entry point, we do not have to deal with this issue.
python
python3
py
To support the equivalent of
python -im ideas ...
a new -i option will have to be added.
-i
Instead of writing
make it possible to write
Note that instead of
python
, in some systems the user might have to writepython3
orpy
; this requires additional information in the documentation which might be confusing. By having an entry point, we do not have to deal with this issue.To support the equivalent of
a new
-i
option will have to be added.