From 057ce704262fd1e760e57d7fb54a6e34a82d1cda Mon Sep 17 00:00:00 2001 From: Stephanie Labasan Brink Date: Thu, 6 Oct 2022 22:09:56 -0700 Subject: [PATCH] add version to __init__.py to query version (#64) This can be used as follows: >>> import hatchet as ht >>> ht.__version__ --- hatchet/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hatchet/__init__.py b/hatchet/__init__.py index b5f0776c..eeaa0d20 100644 --- a/hatchet/__init__.py +++ b/hatchet/__init__.py @@ -8,3 +8,4 @@ from .graphframe import GraphFrame from .query import QueryMatcher +from .version import __version__