diff options
author | Necoro <> | 2007-09-30 21:10:52 +0000 |
---|---|---|
committer | Necoro <> | 2007-09-30 21:10:52 +0000 |
commit | acf288dcc9c0b6ecfe18784ddadfdbdd5a255e7b (patch) | |
tree | aeb6929260446ea2559f86708b33d5f3f9ecf885 /portato/constants.py | |
parent | 1566b3f4ff730c7e3c261751202ea5593e0705d9 (diff) | |
download | portato-acf288dcc9c0b6ecfe18784ddadfdbdd5a255e7b.tar.gz portato-acf288dcc9c0b6ecfe18784ddadfdbdd5a255e7b.tar.bz2 portato-acf288dcc9c0b6ecfe18784ddadfdbdd5a255e7b.zip |
add support for "--with-bdeps"
Diffstat (limited to '')
-rw-r--r-- | portato/constants.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/portato/constants.py b/portato/constants.py index 309b774..4d68ab5 100644 --- a/portato/constants.py +++ b/portato/constants.py @@ -43,11 +43,16 @@ These should be set during the installation. @var SOCKET: path to socket for communication between listener and GUI @type SOCKET: string """ +import os from os.path import join as pjoin +HOME = os.environ["HOME"] + APP = "portato" VERSION = "9999" +SETTINGS_DIR = pjoin(HOME, "."+APP) + CONFIG_DIR = "/etc/portato/" CONFIG_LOCATION = pjoin(CONFIG_DIR, "portato.cfg") |