73d9b062c1e84d01bfb1d4af3e282a249029d271
[gc-dialer] / src / constants.py
1 import os
2
3 __pretty_app_name__ = "DialCentral"
4 __app_name__ = "dialcentral"
5 __version__ = "1.2.19"
6 __build__ = 0
7 __app_magic__ = 0xdeadbeef
8 _data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__)
9 _user_settings_ = "%s/settings.ini" % _data_path_
10 _custom_notifier_settings_ = "%s/notifier.ini" % _data_path_
11 _user_logpath_ = "%s/%s.log" % (_data_path_, __app_name__)
12 _notifier_logpath_ = "%s/notifier.log" % _data_path_
13 IS_MAEMO = True