7cc3e9d5ef
-adds a base set of metadata fields required for results to be rendered in conf.py, including language and content-type -dont support old style claims on the new blockchain
8 lines
211 B
Python
8 lines
211 B
Python
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
|
log.setLevel(logging.ERROR)
|
|
|
|
version = (0, 2, 6)
|
|
__version__ = ".".join([str(x) for x in version])
|