taucmdr package

Subpackages

Module contents

TAU Commander package initialization.

The first line of this file is the first thing to be executed whenever TAU Commander is invoked in any way. This module establishes global constants and checks the Python version. It should be as short and simple.

taucmdr.EXIT_FAILURE = -100

Process exit code indicating unrecoverable failure.

Type:int
taucmdr.EXIT_SUCCESS = 0

Process exit code indicating successful operation.

Type:int
taucmdr.EXIT_WARNING = 100

Process exit code indicating non-optimal condition on exit.

Type:int
taucmdr.HELP_CONTACT = '<support@paratools.com>'

E-mail address users should contact for help.

Type:str
taucmdr.PROJECT_DIR = '.tau'

Name of the project-level directory containing TAU Commander project files.

Type:str
taucmdr.REQUIRED_PYTHON_VERSIONS = [(2, 7), (3, 5), (3, 6), (3, 7)]

Required Python versions for TAU Commander.

A list of tuples (MAJOR, MINOR) directly comparible to sys.version_info

Type:list of tuples
taucmdr.SYSTEM_PREFIX = '/home/runner/taucmdr/system'

System-level TAU Commander files.

Type:str
taucmdr.TAUCMDR_HOME = '/home/runner/work/taucmdr/taucmdr'

Absolute path to the top-level TAU Commander directory.

This directory contains at least bin, docs, and packages directories and is the root for system-level package installation paths. Do not change it once it is set.

Type:str
taucmdr.TAUCMDR_SCRIPT = 'sphinx'

Script that launched TAU Commander.

Mainly used for help messages. Do not change it once it is set.

Type:str
taucmdr.TAUCMDR_URL = 'www.taucommander.com'

URL of the TAU Commander project.

Type:str
taucmdr.TAUCMDR_VERSION = '0.0.0'

TAU Commander Version

Type:str
taucmdr.USER_PREFIX = '/home/runner/.local/taucmdr'

User-level TAU Commander files.

Type:str
taucmdr.version_banner()[source]

Return a human readable text banner describing the TAU Commander installation.