My agentic slop goes here. Not intended for anyone else!
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Geographic coordinate manipulation library for OCaml"
4description:
5 "LonLat provides types and operations for working with latitude/longitude coordinates, including distance calculations, bearings, bounding boxes, and coordinate parsing."
6maintainer: ["maintainer@example.com"]
7authors: ["LonLat Authors"]
8license: "MIT"
9depends: [
10 "ocaml"
11 "dune" {>= "3.0"}
12 "odoc" {with-doc}
13]
14build: [
15 ["dune" "subst"] {dev}
16 [
17 "dune"
18 "build"
19 "-p"
20 name
21 "-j"
22 jobs
23 "@install"
24 "@runtest" {with-test}
25 "@doc" {with-doc}
26 ]
27]