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:

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.

__TITLE__

animedex.config.meta.__TITLE__: str = 'animedex'

Title of this project (should be animedex).

__VERSION__

animedex.config.meta.__VERSION__: str = '0.0.1'

Version of this project.

__DESCRIPTION__

animedex.config.meta.__DESCRIPTION__: str = 'A read-only, multi-source, gh-flavored command-line interface for anime and manga metadata, designed for both humans and LLM agents.'

Short description of the project, will be included in setup.py.

__AUTHOR__

animedex.config.meta.__AUTHOR__: str = 'narugo1992'

Author of this project.

__AUTHOR_EMAIL__

animedex.config.meta.__AUTHOR_EMAIL__: str = 'narugo1992@deepghs.org'

Email of the author.