Files
drf-yasg/src/drf_yasg/__init__.py
T
2017-12-27 21:05:07 +01:00

12 lines
287 B
Python

# coding=utf-8
from pkg_resources import DistributionNotFound, get_distribution
__author__ = """Cristi V."""
__email__ = 'cristi@cvjd.me'
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound: # pragma: no cover
# package is not installed
pass