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.