-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocaml_map.opam
39 lines (39 loc) · 1.11 KB
/
ocaml_map.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
opam-version: "2.0"
maintainer: "Asemio"
authors: [
"Larry Darryl Lee Jr."
]
synopsis: "Maps addresses onto census tracts and other geographical regions."
description: """
Maps addresses onto census tracts and other geographical regions. This program takes ESRI Shapefiles published by the Census Bureau and determines which geographical regions contain them.
"""
license: "GPLv3"
tags: []
homepage: "https://github.com/asemio/address_mapper"
doc: "https://github.com/asemio/address_mapper"
bug-reports: "https://github.com/asemio/address_mapper"
pin-depends: [
# TODO: Pin to the main branch to access csv-eio https://github.com/Chris00/ocaml-csv
["ppx_profile.1.0.0" "git+https://github.com/llee454/ppx_profile.git#main"]
["asemio_stats.1.0.0" "git+https://github.com/llee454/ocaml-gsl-demo.git#main"]
]
depends: [
"ocaml"
"dune"
"ocaml-lsp-server"
"ocamlformat"
"ppx_jane"
"core"
"core_unix"
"lwt"
"lwt_ppx"
"csv-lwt"
"conf-libev"
"yojson" { >= "1.7.0" & < "2.0.0" }
"ppx_deriving_yojson" { >= "3.5.2" }
"shapefile"
"dbf"
"ppx_profile" { = "1.0.0" }
"asemio_stats" { = "1.0.0" }
"base64"
]