first commit

This commit is contained in:
pena 2024-07-11 12:32:38 +02:00
commit 1be272e3e7
10 changed files with 1380 additions and 0 deletions

33
prelude.opam Normal file
View file

@ -0,0 +1,33 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml library hiding stuff from the stdlib"
description:
"Prelude is an OCaml library hiding a lot of stuff from the stdlib to enforce good programming practices."
maintainer: ["pena <pena@kumikode.org>"]
authors: ["pena <pena@kumikode.org>"]
license: "AGPL-3.0-or-later"
tags: ["prelude" "stdlib" "safe" "exception" "layer" "hide"]
homepage: "https://forge.kumikode.org/kumikode/prelude"
bug-reports: "https://forge.kumikode.org/kumikode/prelude/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.13"}
"ocamlformat" {with-dev-setup}
"odoc" {with-dev-setup}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://forge.kumikode.org/kumikode/prelude.git"