animedex.config.meta
Project metadata for the animedex package.
This module defines immutable, public metadata constants used throughout the
project and by packaging tools such as setup.py. These values provide the
project title, version, description, and author contact information.
The module exposes the following public attributes:
__TITLE__- Project name__VERSION__- Current project version__DESCRIPTION__- Short project description__AUTHOR__- Author name__AUTHOR_EMAIL__- Author contact email
Example:
>>> from animedex.config import meta
>>> meta.__TITLE__
'animedex'
Note
These values are intended to be constants and should not be modified at runtime. They are consumed by packaging and documentation tools.