hubvault.config.meta

Metadata constants for the hubvault package.

This module centralizes the small set of package metadata values that are shared by packaging logic and the command-line interface.

The module contains:

Example:

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

__TITLE__

hubvault.config.meta.__TITLE__ = 'hubvault'

Title of this project (should be hubvault).

__VERSION__

hubvault.config.meta.__VERSION__ = '0.0.1'

Version of this project.

__DESCRIPTION__

hubvault.config.meta.__DESCRIPTION__ = 'API-first embedded versioned storage for local ML artifacts'

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

__AUTHOR__

hubvault.config.meta.__AUTHOR__ = 'HansBug, narugo1992'

Author of this project.

__AUTHOR_EMAIL__

hubvault.config.meta.__AUTHOR_EMAIL__ = 'hansbug@buaa.edu.cn, narugo1992@deepghs.org'

Email of the authors’.