ppt_control / __init__.pyon commit bump version (e5c6ba6)
   1from os import getenv
   2
   3__version__ = "0.0.4"
   4__name__ = "ppt-control"
   5
   6CONFIG_DIR = getenv("APPDATA") + "\\" + __name__
   7CONFIG_FILE = __name__ + ".ini"
   8CONFIG_PATH = CONFIG_DIR + "\\" + CONFIG_FILE
   9
  10LOG_DIR = getenv("APPDATA") + "\\" + __name__
  11LOG_FILE = __name__ + ".log"
  12LOG_PATH = LOG_DIR + "\\" + LOG_FILE