2020-09-07 14:52:33 +02:00
|
|
|
"""
|
|
|
|
Package related information, like version, name, etc.
|
|
|
|
"""
|
|
|
|
from pkg_resources import get_distribution, DistributionNotFound
|
|
|
|
|
|
|
|
try:
|
|
|
|
__version__ = get_distribution(__name__).version
|
|
|
|
except DistributionNotFound:
|
|
|
|
# package is not installed
|
|
|
|
pass
|