File: Synopsis/config.py
 1#
 2# Copyright (C) 2007 Stefan Seefeld
 3# All rights reserved.
 4# Licensed to the public under the terms of the GNU LGPL (>= 2),
 5# see the file COPYING for details.
 6#
 7
 8"""This module contains configuration data that are specific to a
 9particular release / installation such as version, data
10paths, etc."""
11
12import os, os.path
13
14# The following variables are adjusted during installation.
15version = 'devel'
16prefix = os.path.join(os.path.dirname(__file__), os.pardir)
17datadir = os.path.join(prefix, 'share', 'synopsis')
18revision = 'unknown'
19