1"""
2    Autoconf'ed variables for PDB2PQR
3
4    This is an module for storing all autoconf'ed variables.
5
6    ----------------------------
7
8    PDB2PQR -- An automated pipeline for the setup, execution, and analysis of
9    Poisson-Boltzmann electrostatics calculations
10
11    Copyright (c) 2002-2011, Jens Erik Nielsen, University College Dublin;
12    Nathan A. Baker, Battelle Memorial Institute, Developed at the Pacific
13    Northwest National Laboratory, operated by Battelle Memorial Institute,
14    Pacific Northwest Division for the U.S. Department Energy.;
15    Paul Czodrowski & Gerhard Klebe, University of Marburg.
16
17	All rights reserved.
18
19	Redistribution and use in source and binary forms, with or without modification,
20	are permitted provided that the following conditions are met:
21
22		* Redistributions of source code must retain the above copyright notice,
23		  this list of conditions and the following disclaimer.
24		* Redistributions in binary form must reproduce the above copyright notice,
25		  this list of conditions and the following disclaimer in the documentation
26		  and/or other materials provided with the distribution.
27        * Neither the names of University College Dublin, Battelle Memorial Institute,
28          Pacific Northwest National Laboratory, US Department of Energy, or University
29          of Marburg nor the names of its contributors may be used to endorse or promote
30          products derived from this software without specific prior written permission.
31
32	THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
33	ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
34	WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35	IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
36	INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
37	BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38	DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
39	LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
40	OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
41	OF THE POSSIBILITY OF SUCH DAMAGE.
42
43    ----------------------------
44"""
45
46__date__   = "8 July 2008"
47__author__ = "Yong Huang"
48
49""" PDB2PQR version string"""
50PDB2PQR_VERSION = "@PDB2PQR_VERSION@"
51
52""" The maximum number atoms to be handled on the server"""
53MAXATOMS = @MAXATOMS@
54
55""" The absolute path to root HTML directory"""
56SRCPATH = "@srcpath@/"
57
58""" The path to the web site *directory* """
59WEBSITE     = "@website@"
60
61""" The stylesheet to use """
62STYLESHEET  = WEBSITE + "pdb2pqr.css"
63
64""" The OPAL service URL """
65PDB2PQR_OPAL_URL = "@PDB2PQR_OPAL_URL@"
66
67""" The HAVE_PDB2PQR_OPAL flag """
68HAVE_PDB2PQR_OPAL = PDB2PQR_OPAL_URL != ""
69
70""" The HAVE_APBS flag """
71APBS_LOCATION = "@APBS_LOCATION@"
72
73""" The HAVE_APBS flag """
74HAVE_APBS = APBS_LOCATION != ""
75
76""" The APBS_OPAL_URL flag """
77APBS_OPAL_URL = "@APBS_OPAL_URL@"
78
79""" The installation directory """
80INSTALLDIR = "@INSTALLDIR@"
81
82""" The temporary directory """
83TMPDIR = "tmp/"
84