armpicom.setup.keys module

Module

keys.py

Copyright

Copyright (C) 2026 Vladimir Roncevic <elektron.ronca@gmail.com> armpicom is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. armpicom is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

Info

Runtime components and interface constraints for the armpicom bundle.

class armpicom.setup.keys.ARMPicomBundleKeys[source]

Bases: object

Runtime components and interface constraints for the armpicom bundle.

It defines:

attributes:
DEPENDENCY_BASE - The base bundle constant for the armpicom bundle.
DEPENDENCY_SERVICE - The service interface constant for the armpicom bundle.
DEPENDENCY_SUBPROCESSOR - The subprocessor interface constant for the armpicom bundle.
DEPENDENCY_CLI - The cli interface constant for the armpicom bundle.
OPTION_INFO_FILE - The info file option constant for the armpicom bundle.
methods:
get_dependency_to_type - Returns the mapping of the armpicom bundle dependencies to their types.
get_option_to_type - Returns the mapping of the armpicom bundle options to their types.
DEPENDENCY_BASE: ClassVar[str] = 'base'
DEPENDENCY_CLI: ClassVar[str] = 'cli'
DEPENDENCY_SERVICE: ClassVar[str] = 'service'
DEPENDENCY_SUBPROCESSOR: ClassVar[str] = 'subprocessor'
OPTION_INFO_FILE: ClassVar[str] = 'info_file'
classmethod get_dependency_to_type() MappingProxyType[source]

Returns the mapping of the armpicom bundle dependencies to their types.

Returns:

The mapping of the armpicom bundle dependencies to their types.

Exceptions:

None.

classmethod get_option_to_type() MappingProxyType[source]

Returns the mapping of the armpicom bundle options to their types.

Returns:

The mapping of the armpicom bundle options to their types.

Exceptions:

None.