You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
260 B
11 lines
260 B
6 years ago
|
try:
|
||
|
from ._version import __version__
|
||
|
except ImportError:
|
||
|
__version__ = '0.1'
|
||
|
|
||
|
VERSION = __version__.split('+')
|
||
|
VERSION = tuple(list(map(int, VERSION[0].split('.'))) + VERSION[1:])
|
||
|
|
||
|
|
||
|
default_app_config = 'shared.media_archive.apps.MediaArchiveConfig'
|