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:

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.

__AUTHOR__

hbutils.config.meta.__AUTHOR__: str = 'HansBug'

Author of this project.

__AUTHOR_EMAIL__

hbutils.config.meta.__AUTHOR_EMAIL__: str = 'hansbug@buaa.edu.cn'

Email of the authors’.