mlrl.testbed.program_info module

Author: Michael Rapp (michael.rapp.ml@gmail.com)

Provides classes for providing the text to be shown when the “–version” flag is passed to the command line API.

class mlrl.testbed.program_info.ProgramInfo(name: str, version: str, year: str | None = None, authors: list[str] = <factory>)

Bases: object

Provides information about a program.

Parameters:
  • name – The name of the program

  • version – The version of the program

  • year – The year when the program was released

  • authors – A list containing the names of all authors of the program

authors: list[str]
name: str
version: str
year: str | None = None