-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogical.opam
32 lines (32 loc) · 966 Bytes
/
logical.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
opam-version: "2.0"
name: "logical"
version: "0.3.0"
synopsis: "Logical is a minimalistic logic programming inspired by microKanren"
description: """
Logical is a minimalistic logic programming inspired by microKanren, which is
- Simple implementation with only a few building blocks
- Easy to understand and use
- Supports negation free constraint logic programming
"""
maintainer: "Robert Toth <kkdstryker@gmail.com>"
authors: ["Robert Toth"]
homepage: "https://github.com/StrykerKKD/Logical"
bug-reports: "https://github.com/StrykerKKD/Logical/issues"
dev-repo: "git+https://github.com/StrykerKKD/Logical.git"
doc: "https://strykerkkd.github.io/Logical/"
license: "MIT"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name] {with-doc}
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
depends: [
"dune"
"alcotest" {with-test}
"odoc" {with-doc}
"base" {>= "0.12.0"}
"ocaml" {>= "4.04.2"}
]