2015-10-10 09:02:53 +02:00
|
|
|
from os import path
|
|
|
|
|
2015-12-09 08:40:01 +01:00
|
|
|
debug = True
|
2015-10-10 09:02:53 +02:00
|
|
|
application_directory = '{}/.elodie'.format(path.expanduser('~'))
|
|
|
|
hash_db = '{}/hash.json'.format(application_directory)
|
2015-12-24 20:39:28 +01:00
|
|
|
location_db = '{}/location.json'.format(application_directory)
|
2015-10-21 08:51:14 +02:00
|
|
|
script_directory = path.dirname(path.dirname(path.abspath(__file__)))
|
|
|
|
exiftool_config = '%s/configs/ExifTool_config' % script_directory
|