django-configurations/configurations/version.py

8 lines
207 B
Python
Raw Normal View History

2019-12-03 12:01:17 +00:00
from pkg_resources import get_distribution, DistributionNotFound
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
__version__ = None