9 lines
354 B
Python
9 lines
354 B
Python
from os import path
|
|
|
|
debug = True
|
|
application_directory = '{}/.elodie'.format(path.expanduser('~'))
|
|
hash_db = '{}/hash.json'.format(application_directory)
|
|
location_db = '{}/location.json'.format(application_directory)
|
|
script_directory = path.dirname(path.dirname(path.abspath(__file__)))
|
|
exiftool_config = '%s/configs/ExifTool_config' % script_directory
|