File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[project ]
22name = " khisto"
3- dynamic = [ " version " ]
3+ version = " 0.2.0 "
44description = " Optimal histogram visualization using the Khiops algorithm"
55readme = " README.md"
66license = " BSD-3-Clause-Clear"
Original file line number Diff line number Diff line change 22# This software is distributed under the BSD 3-Clause-clear License, the text of which is available
33# at https://spdx.org/licenses/BSD-3-Clause-Clear.html or see the "LICENSE" file for more details.
44
5+ import logging
56import os
7+ from importlib .metadata import version
68from pathlib import Path
7- import logging
89
910logging .basicConfig (level = logging .INFO )
1011logger = logging .getLogger (__name__ )
1314
1415KHISTO_BIN_DIR = os .environ .get ("KHISTO_BIN_DIR" , "khisto" )
1516
16- __version__ = "0.2.0"
17+ __version__ = version ( "khisto" )
1718
1819from .array import histogram # noqa: E402
1920from .core import HistogramResult # noqa: E402
You can’t perform that action at this time.
0 commit comments