catala/catala.opam

61 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-09-04 11:32:33 +03:00
opam-version: "2.0"
version: "0.6.0"
2021-04-22 12:57:50 +03:00
synopsis:
"Compiler and library for the literate programming language for tax code specification"
2022-03-08 13:28:42 +03:00
description:
"Catala is a domain-specific language for deriving faithful-by-construction algorithms from legislative texts. See https://catala-lang.org for more information"
2020-12-14 12:59:15 +03:00
maintainer: ["contact@catala-lang.org"]
2022-02-25 16:59:56 +03:00
authors: [
"Denis Merigoux"
"Nicolas Chataing"
"Emile Rolley"
"Louis Gesbert"
"Aymeric Fromherz"
"Alain Delaët-Tixeuil"
]
2020-12-23 17:37:29 +03:00
license: "Apache-2.0"
2020-04-28 16:08:12 +03:00
homepage: "https://github.com/CatalaLang/catala"
bug-reports: "https://github.com/CatalaLang/catala/issues"
2019-09-04 11:32:33 +03:00
depends: [
2021-04-22 12:57:50 +03:00
"dune" {>= "2.8"}
"ocaml" {>= "4.11.0"}
"ANSITerminal" {>= "0.8.2"}
"sedlex" {>= "2.4"}
2020-04-17 14:02:15 +03:00
"menhir" {>= "20200211"}
"menhirLib" {>= "20200211"}
2020-12-21 18:52:17 +03:00
"unionFind" {>= "20200320"}
2020-12-14 12:59:15 +03:00
"bindlib" {>= "5.0.1"}
"cmdliner" {= "1.0.4"}
"re" {>= "1.9.0"}
"zarith" {>= "1.12"}
"zarith_stubs_js" {>= "v0.14.1"}
2020-08-03 19:07:09 +03:00
"ocamlgraph" {>= "1.8.8"}
2021-01-14 15:04:15 +03:00
"calendar" {>= "2.04"}
2021-01-28 20:30:01 +03:00
"visitors" {>= "20200210"}
"benchmark" {>= "1.6"}
2021-03-18 18:52:46 +03:00
"js_of_ocaml-ppx" {>= "3.8.0"}
"camomile" {>= "1.0.2"}
2021-08-19 21:32:23 +03:00
"cppo" {>= "1"}
"alcotest" {with-test & >= "1.5.0"}
2021-08-23 15:24:39 +03:00
"odoc" {with-doc}
2019-09-04 11:32:33 +03:00
]
depopts: ["z3"]
conflicts: [
"z3" {< "4.8.11"}
]
build: [
2021-04-22 12:57:50 +03:00
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
2020-04-28 16:08:12 +03:00
dev-repo: "git+https://github.com/CatalaLang/catala.git"