hbutils.config.meta
Package metadata constants for the hbutils project.
This module provides centralized metadata attributes for the hbutils package,
including the project title, version, description, and author information. These
constants are primarily used in packaging and distribution workflows (e.g.,
setup.py or pyproject.toml configurations).
The module contains the following public constants:
__TITLE__- Package title identifier__VERSION__- Current package version__DESCRIPTION__- Short project description__AUTHOR__- Package author name__AUTHOR_EMAIL__- Contact email for the author
Example:
>>> from hbutils.config.meta import __TITLE__, __VERSION__
>>> print(f"{__TITLE__} v{__VERSION__}")
hbutils v0.14.2
Note
These values are meant to be imported and used by packaging tools or to expose metadata at runtime.
__TITLE__
- hbutils.config.meta.__TITLE__: str = 'hbutils'
Title of this project (should be hbutils).
__VERSION__
- hbutils.config.meta.__VERSION__: str = '0.14.2'
Version of this project.
__DESCRIPTION__
- hbutils.config.meta.__DESCRIPTION__: str = 'Some useful functions and classes in Python infrastructure development.'
Short description of the project, will be included in
setup.py.