hubvault.config

Public configuration exports for the hubvault.config package.

This package keeps thin package-level exports for stable project metadata used by packaging code and CLI presentation helpers.

The package contains:

  • __TITLE__ - Canonical package title

  • __VERSION__ - Package version string

  • __DESCRIPTION__ - Short package description

  • __AUTHOR__ - Comma-separated author list

  • __AUTHOR_EMAIL__ - Comma-separated author email list

Example:

>>> from hubvault.config import __TITLE__, __VERSION__
>>> __TITLE__
'hubvault'
>>> isinstance(__VERSION__, str)
True

__all__

hubvault.config.__all__ = ['__AUTHOR__', '__AUTHOR_EMAIL__', '__DESCRIPTION__', '__TITLE__', '__VERSION__']

Built-in mutable sequence.

If no argument is given, the constructor creates a new empty list. The argument must be an iterable if specified.