From ebb3d391bdcc5292b91938561449f11e0111be33 Mon Sep 17 00:00:00 2001 From: TApplencourt Date: Wed, 30 Sep 2015 13:36:53 +0200 Subject: [PATCH] qp_install_module -> qp_module --- .travis.yml | 2 +- README.md | 16 ++++++++-------- scripts/compilation/qp_create_ninja.py | 2 +- .../{qp_install_module.py => qp_module.py} | 10 +++++----- 4 files changed, 15 insertions(+), 15 deletions(-) rename scripts/module/{qp_install_module.py => qp_module.py} (95%) diff --git a/.travis.yml b/.travis.yml index 0e78a8c6..b763532c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ python: script: - ./configure --production ./config/gfortran.cfg - source ./quantum_package.rc - - qp_install_module.py install Full_CI Hartree_Fock + - qp_module.py install Full_CI Hartree_Fock - ninja - cd ocaml ; make ; cd - - cd testing_no_regression ; ./unit_test.py diff --git a/README.md b/README.md index 4b288d85..5cfcf184 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ For more information, you can visit the [wiki of the project](http://github.com/ * Python >= 2.6 * GNU make * Bash +* Blast/Lapack +* unzip ## Standard installation @@ -51,19 +53,17 @@ This file contains all the environment variables needed by the quantum package b ### Optional) Add some new module - Usage: qp_install_module.py list (--installed|--avalaible-local|--avalaible-remote) - qp_install_module.py install ... - qp_install_module.py create -n [...] - qp_install_module.py download -n [...] + Usage: qp_module.py list (--installed|--avalaible-local|--avalaible-remote) + qp_module.py install ... + qp_module.py create -n [...] + qp_module.py download -n [...] For exemple you can type : -`qp_install_module.py install Full_CI` +`qp_module.py install Full_CI` ### 3) Compiling the fortran - ninja -Just type `ninja` if you are in `$QP_ROOT` (or `ninja -f $QP_ROOT/build.ninja` -elsewhere). The compilation will take approximately 3 min. +Just type `ninja` if you are in `$QP_ROOT` (or `ninja -f $QP_ROOT/build.ninja` elsewhere). The compilation will take approximately 3 min. If you have set the `--developement` flag in a specific module you can go in the corresponding module directory and run `ninja` to build only this module. diff --git a/scripts/compilation/qp_create_ninja.py b/scripts/compilation/qp_create_ninja.py index 36252007..cfb0a998 100755 --- a/scripts/compilation/qp_create_ninja.py +++ b/scripts/compilation/qp_create_ninja.py @@ -909,7 +909,7 @@ if __name__ == "__main__": if module not in d_binaries: l_msg = ["{0} is a root module but does not contain a main file.", "- Create it in {0}", - "- Or delete {0} `qp_install_module.py uninstall {0}`", + "- Or delete {0} `qp_module.py uninstall {0}`", "- Or install a module that needs {0} with a main "] print "\n".join(l_msg).format(module.rel) diff --git a/scripts/module/qp_install_module.py b/scripts/module/qp_module.py similarity index 95% rename from scripts/module/qp_install_module.py rename to scripts/module/qp_module.py index 99674e14..0e4a89c8 100755 --- a/scripts/module/qp_install_module.py +++ b/scripts/module/qp_module.py @@ -2,11 +2,11 @@ # -*- coding: utf-8 -*- """ Usage: - qp_install_module.py create -n [...] - qp_install_module.py download -n [...] - qp_install_module.py install ... - qp_install_module.py list (--installed | --available-local) - qp_install_module.py uninstall ... + qp_module.py create -n [...] + qp_module.py download -n [...] + qp_module.py install ... + qp_module.py list (--installed | --available-local) + qp_module.py uninstall ... Options: