Coverage for sacred/sacred/__about__.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""Contains meta-information about the Sacred package.
3It is kept simple and separate from the main module, because this information
4is also read by the setup.py. And during installation the sacred module cannot
5yet be imported.
6"""
8__all__ = ("__version__", "__author__", "__author_email__", "__url__")
10__version__ = "0.8.2"
12__author__ = "Klaus Greff"
13__author_email__ = "klaus.greff@startmail.com"
15__url__ = "https://github.com/IDSIA/sacred"