nguyenp99's picture
Upload 17 files
45099b6 verified
raw
history blame
279 Bytes
"""
isort: skip_file
"""
from pkg_resources import DistributionNotFound, get_distribution
__version__ = None
try:
__version__ = get_distribution("table_reconstruction").version
except DistributionNotFound:
__version__ == "0.0.0" # package is not installed
pass