Fix naming hyphenation from boilerplate

This commit is contained in:
Luke Murphy
2019-07-08 13:04:00 +02:00
parent c3e75cad74
commit 4d9e548945
7 changed files with 11 additions and 17 deletions

View File

@ -0,0 +1,12 @@
"""merkle-tree-stream module."""
try:
import pkg_resources
except ImportError:
pass
try:
__version__ = pkg_resources.get_distribution('merkle_tree_stream').version
except Exception:
__version__ = 'unknown'