blob: 12f53f5d3a59e09950b55dd2847217cc0da41098 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
from pkg_resources import get_distribution, DistributionNotFound
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
__version__ = 'unknown'
from . import package_info
|