this repo has no description
1opam-version: "2.0"
2maintainer: "Ghiles Ziat <ghiles.ziat@epita.fr>"
3authors: [
4 "Ghiles Ziat"
5 "Rémy Besognet El Sibaïe"
6]
7homepage: "https://github.com/ghilesZ/geoml"
8bug-reports: "https://github.com/ghilesZ/geoml/issues"
9dev-repo: "git+https://github.com/ghilesZ/geoml"
10license: "MIT"
11
12build: [
13 ["dune" "build" "-p" name "-j" jobs]
14 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
15 ["dune" "build" "@runtest" "-p" name "-j" jobs] {with-test}
16]
17
18depends: [
19 "ocaml" {>= "4.08.0"}
20 "dune" {>= "2.4"}
21 "odoc" {with-doc}
22 "alcotest" {with-test}
23]
24
25synopsis: "Geoml: 2D Geometry library for OCaml"
26description: "Geoml is a 2D geometry for OCaml that provides basic euclidean geometry types (point, line, circle ...) and useful operations over those types. Computations are made using floatting point precision"
27url {
28 src: "https://github.com/ghilesZ/geoml/archive/0.1.1.tar.gz"
29 checksum: [
30 "md5=37ca15d64a035762d12c4bd7064a1841"
31 "sha512=109d7597bd2a8d6628b4c0ee40cd94066fe09ce565bb35fe10683e5f701c1d058daaec79702b4f5f8ed68eeed444c363ca6070f854bbdfb6d0cd997db0f21408"
32 ]
33}