We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a4171b commit c344e66Copy full SHA for c344e66
cluster/__init__.py
@@ -16,6 +16,10 @@
16
#
17
18
19
+from pkg_resources import resource_string
20
+
21
from .method.hierarchical import HierarchicalClustering
22
from .method.kmeans import KMeansClustering
23
from .util import ClusteringError
24
25
+__version__ = resource_string('cluster', 'version.txt').decode('ascii').strip()
cluster/version.txt
@@ -0,0 +1 @@
1
+1.3.0
0 commit comments