2007-06-11 13:09:24 +01:00
|
|
|
"""
|
|
|
|
Scyther : An automatic verifier for security protocols.
|
|
|
|
Copyright (C) 2007 Cas Cremers
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
"""
|
|
|
|
|
2006-08-09 12:36:33 +01:00
|
|
|
#
|
|
|
|
# Init this module
|
|
|
|
#
|
|
|
|
# The most important thing is to get the base directory right, in
|
|
|
|
# order to correctly find the executables
|
|
|
|
#
|
|
|
|
import Scyther
|
2006-11-23 11:28:51 +00:00
|
|
|
import os.path
|
2006-08-09 12:36:33 +01:00
|
|
|
|
2007-05-21 12:24:19 +01:00
|
|
|
bindir = __path__[0]
|
2006-11-23 11:28:51 +00:00
|
|
|
Scyther.setBinDir(bindir)
|
2006-12-14 14:06:50 +00:00
|
|
|
|