9559540ded5e8fbb41b7907f96949c6489fba0f2
[watersofshiloah] / src / constants.py
1 import os
2
3 __pretty_app_name__ = "Mormon Channel"
4 __app_name__ = "mormonchannel"
5 __version__ = "1.0.0"
6 __build__ = 0
7 __app_magic__ = 0x1AFF5
8 _data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__)
9 _user_settings_ = "%s/settings.ini" % _data_path_
10 _cache_path_ = "%s/cache" % _data_path_
11 _user_logpath_ = "%s/%s.log" % (_data_path_, __app_name__)