From 83f562aadfb16168b6ed003628b078af1c7f1169 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Fri, 12 Feb 2021 09:20:42 +0100 Subject: [PATCH] Added opam package definition --- .gitignore | 1 - qcaml.opam | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 qcaml.opam diff --git a/.gitignore b/.gitignore index 3ac40d5..deec055 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,4 @@ _build .merlin *.install -qcaml.opam #*# diff --git a/qcaml.opam b/qcaml.opam new file mode 100644 index 0000000..795b532 --- /dev/null +++ b/qcaml.opam @@ -0,0 +1,27 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +build: [ + ["dune" "subst"] {pinned} + ["dune" "build" "-p" name "-j" jobs] + ["dune" "runtest" "-p" name "-j" jobs] {with-test} + ["dune" "build" "-p" name "@doc"] {with-doc} +] +maintainer: ["Anthony Scemama "] +authors: ["Anthony Scemama "] +bug-reports: "https://gitlab.com/scemama/qcaml/issues" +homepage: "https://gitlab.com/scemama/qcaml" +doc: "https://gitlab.com/scemama/qcaml" +license: "LGPL-2.1+ with OCaml linking exception" +dev-repo: "git+https://gitlab.com/scemama/qcaml.git" +synopsis: "QCaml - Quantum chemistry with OCaml" +description: """ +QCaml provides a programming framewrok work wave function methods +in quantum chemistry.""" +depends: [ + "ocaml" {>= "4.10"} + "dune" {>= "1.10"} + "lacaml" + "getopt" + "zarith" + "alcotest" +]