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.
 
 
 
 
 

10 lines
260 B

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'