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

5 statements  

1"""Contains meta-information about the Sacred package. 

2 

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""" 

7 

8__all__ = ("__version__", "__author__", "__author_email__", "__url__") 

9 

10__version__ = "0.8.2" 

11 

12__author__ = "Klaus Greff" 

13__author_email__ = "klaus.greff@startmail.com" 

14 

15__url__ = "https://github.com/IDSIA/sacred"