- added new helper methods _distributeparams and _findnormpathitem to
[PyX/mjg.git] / pyx / siteconfig.py
blob9a8e304b67bc5e478b4843cf7decce80a45dbbc2
1 #!/usr/bin/env python
2 # -*- coding: ISO-8859-1 -*-
5 # Copyright (C) 2004 André Wobst <wobsta@users.sourceforge.net>
7 # This file is part of PyX (http://pyx.sourceforge.net/).
9 # PyX is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # PyX is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with PyX; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
24 # This file configures PyX search paths relative to the current
25 # position, e.g. for local usage. When installing PyX via distutils
26 # the contents of this file is not copied to the PyX installation.
27 # Instead the correct information about the paths from the installation
28 # process are used.
29 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
31 import os
33 lfsdir = os.path.join(os.path.dirname(__file__), "lfs")
34 sharedir = os.path.join(os.path.dirname(__file__), "..", "contrib")
35 pyxrc = os.path.join(os.path.dirname(__file__), "..", "pyxrc")