Go to the source code of this file.
|
tuple | run_app.parser = ArgumentParser() |
|
tuple | run_app.args = parser.parse_args() |
|
tuple | run_app.output_dir = os.path.abspath("tmp") |
|
tuple | run_app.current_path = os.path.dirname(os.path.realpath(__file__)) |
|
tuple | run_app.config_file = os.path.abspath(argv[1]) |
|
tuple | run_app.output_file = os.path.join(output_dir, os.path.split(config_file)[-1]) |
|
tuple | run_app.build_path = os.path.abspath(os.path.join(current_path, "..", "..", "build-app")) |
|
tuple | run_app.project_path = os.path.abspath(os.path.join(current_path, "..")) |
|
tuple | run_app.devnull = open('/dev/null', 'w') |
|
tuple | run_app.app_path = os.path.join(build_path, "app") |
|
tuple | run_app.lib_path = os.path.join(build_path, "src") |
|
tuple | run_app.env = dict(os.environ) |
|
list | run_app.run_argument = ["./hartree-fock", config_file, output_dir] |
|
tuple | run_app.proc = subprocess.call(run_argument, cwd=app_path, env=env) |
|