mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-11 01:28:17 +03:00
10 lines
311 B
Python
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")
|