bcaa5a9c3576aa38bc8229dc461cf3d145b3f7b5
[watersofshiloah] / src / constants.py
1 import os
2
3 __pretty_app_name__ = ""
4 __app_name__ = ""
5 __version__ = "0.1.0"
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 _user_logpath_ = "%s/%s.log" % (_data_path_, __app_name__)