An OCaml library to generate random text using Markov chains
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
867 B

# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Generate text using Markov chains"
description:
"omg is an OCaml library to generate random text using Markov chains. You initialize a generator, feed it with some input, then it generates random text based on the input."
maintainer: ["Léo Andrès <contact@ndrs.fr>"]
authors: ["Léo Andrès <contact@ndrs.fr>"]
license: "ISC"
homepage: "https://git.zapashcanon.fr/zapashcanon/omg"
doc: "https://doc.zapashcanon.fr/omg/"
bug-reports: "https://git.zapashcanon.fr/zapashcanon/omg/issues"
depends: [
"ocaml" {>= "4.05.0"}
"dune" {>= "1.11.0"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git://git.zapashcanon.fr/zapashcanon/omg.git"