chia-blockchain/chia/__init__.py

10 lines
311 B
Python

from pkg_resources import DistributionNotFound, get_distribution, resource_filename
try:
__version__ = get_distribution("chia-blockchain").version
except DistributionNotFound:
# package is not installed
__version__ = "unknown"
PYINSTALLER_SPEC_PATH = resource_filename("chia", "pyinstaller.spec")