Command line interface

Overview of command line scripts in PM for developers.

All command line script for PM are stored in the cli module, end with the suffix _cli, and are a class named CommandLine which derives from BaseCommandLine. In order to register a new cli, the script must be added to the setup.cfg file. Consider the example irr_rep_prod_cli.py: there is an entry in the console_scripts

# setup.cfg file
console_scripts =
  pm-irr_rep_product =   principia_materia.cli.irr_rep_product_cli:CommandLine.main

After updating the file, you must run pip installi . or pip install -e . to make the changes take effect. You also may need to restart your virtual environment for tab completion to be updated.