File: SPBasePaths.py

package info (click to toggle)
childsplay 3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 46,364 kB
  • sloc: python: 18,482; xml: 348; makefile: 22
file content (17 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This module holds all the paths needed for childsplay on a Debian system
import os, sys

try:
    import IamBinary
except ImportError:
    print "No binary"
    BASEDIR = sys.path[0]
    os.chdir(BASEDIR)

DOCDIR = '/usr/share/doc/childsplay'
PYTHONCPDIR = '/usr/share/pyshared/childsplay'
BASEDIR = '/usr/share/pyshared/childsplay'
SHARELIBDATADIR = '/usr/share/childsplay'
ALPHABETDIR = '/usr/share/sp_alphabetsounds'
LOCALEDIR = '/usr/share/locale'
WWWDIR = '/usr/share/childsplay/www/backend'