Migrate to pyproject config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Luke Murphy
2020-07-07 15:42:41 +02:00
parent 9776cea9f0
commit a9ebea0889
11 changed files with 387 additions and 153 deletions

View File

@ -2,14 +2,3 @@
from merkle_tree_stream.node import MerkleTreeNode # noqa
from merkle_tree_stream.tree import MerkleTreeGenerator # noqa
try:
import pkg_resources
except ImportError:
pass
try:
__version__ = pkg_resources.get_distribution("merkle_tree_stream").version
except Exception:
__version__ = "unknown"