mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-17 06:40:24 +00:00
10 lines
178 B
Python
10 lines
178 B
Python
try:
|
|
__version__ = __import__('pkg_resources').get_distribution(
|
|
'django-axes'
|
|
).version
|
|
except:
|
|
__version__ = ''
|
|
|
|
|
|
def get_version():
|
|
return __version__
|