mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
9 lines
255 B
Python
9 lines
255 B
Python
from pkg_resources import DistributionNotFound, get_distribution
|
|
|
|
try:
|
|
__version__ = get_distribution("django-auditlog").version
|
|
except DistributionNotFound:
|
|
# package is not installed
|
|
pass
|
|
|
|
default_app_config = "auditlog.apps.AuditlogConfig"
|