aboutsummaryrefslogtreecommitdiff
path: root/weekly/__init__.py
blob: 873e2c3f4ce1f177069ae8748955f9eceee87e6d (plain) (blame)
1
2
3
4
5
6
from pkg_resources import get_distribution, DistributionNotFound
try:
    __version__ = get_distribution(__name__).version
except DistributionNotFound:
    # package is not installed
    __version__ = 'unknown'