Bump to 1.0.6
[watersofshiloah] / src / constants.py
1 import os
2
3 __pretty_app_name__ = "Waters of Shiloah"
4 __app_name__ = "watersofshiloah"
5 __version__ = "1.0.6"
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__)