Nombres/nombres.opam

39 lines
849 B
Plaintext
Raw Normal View History

2021-05-24 12:06:33 +00:00
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
2022-04-10 09:58:17 +00:00
version: "0.9"
synopsis: "Conversion of integers to french."
2021-05-24 12:06:33 +00:00
description: """
2022-04-10 09:58:17 +00:00
Convert integers into french.
2021-05-24 12:06:33 +00:00
Some references:
- https://leconjugueur.lefigaro.fr/frlesnombres.php
- https://www.miakinen.net/vrac/nombres
- https://www.dcode.fr/ecriture-nombre-lettres
"""
2022-04-10 09:58:17 +00:00
maintainer: ["matthieu.dubuget@gmail.com"]
authors: ["Matthieu Dubuget"]
license: "ISC"
homepage: "https://github.com/ttamttam/nombres"
bug-reports: "https://github.com/ttamttam/nombres/issues"
2021-05-24 12:06:33 +00:00
depends: [
2022-04-10 09:58:17 +00:00
"dune" {>= "3.0"}
2022-04-11 13:54:09 +00:00
"fmt"
"qtest" {with-test}
2021-05-24 12:06:33 +00:00
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
2022-04-10 09:58:17 +00:00
dev-repo: "git+https://github.com/ttamttam/nombres.git"