Rename to drf-yasg

drf-swagger was already taken
This commit is contained in:
Cristi Vîjdea
2017-12-13 10:22:03 +01:00
parent 71b3fd2895
commit c66f7e8e01
65 changed files with 965 additions and 166 deletions
+11
View File
@@ -0,0 +1,11 @@
# coding=utf-8
from pkg_resources import get_distribution, DistributionNotFound
__author__ = """Cristi V."""
__email__ = 'cristi@cvjd.me'
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound: # pragma: no cover
# package is not installed
pass