-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsloth_script.opam
More file actions
37 lines (37 loc) · 1.03 KB
/
sloth_script.opam
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
33
34
35
36
37
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A slow scripting language"
description: "A longer description"
maintainer: ["Christopher Fujino <christopherfujino@gmail.com>"]
authors: ["Christopher Fujino <christopherfujino@gmail.com>"]
license: "BSD-3-Clause"
tags: ["topics" "to describe" "your" "project"]
homepage: "https://github.com/christopherfujino/slothscript"
doc: "https://url/to/documentation"
bug-reports: "https://github.com/christopherfujino/slothscript/issues"
depends: [
"ocaml" {>= "5.4.0" & < "5.5.0"}
"dune" {>= "3.16"}
"ounit2" {>= "2.2.7" & < "3.0.0"}
"core" {>= "v0.17.1" & < "v0.18"}
"core_unix" {>= "v0.17.1" & < "v0.18"}
"ppx_jane" {>= "v0.17.0" & < "v0.18"}
"re" {>= "1.14.0" & < "2.0.0"}
"readline" {>= "0.2"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/christopherfujino/slothscript.git"