this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Richard Jones" 4 "Christophe Troestler" ] 5license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 6homepage: "https://github.com/Chris00/ocaml-csv" 7dev-repo: "git+https://github.com/Chris00/ocaml-csv.git" 8bug-reports: "https://github.com/Chris00/ocaml-csv/issues" 9tags: [ "csv" "database" "science" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--%{lwt:enable}%-lwt"] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-configure" "--enable-tests" "--%{lwt:enable}%-lwt"] 14 {with-test} 15 ["ocaml" "setup.ml" "-build"] {with-test} 16 ["ocaml" "setup.ml" "-test"] {with-test} 17 ["ocaml" "setup.ml" "-doc"] {with-doc} 18] 19install: ["ocaml" "setup.ml" "-install"] 20remove: [ 21 ["ocaml" "%{etc}%/csv/setup.ml" "-C" "%{etc}%/csv" "-uninstall"] 22] 23depends: [ 24 "ocaml" {>= "4.00.1" & < "5.0.0"} 25 "base-bytes" 26 "ocamlbuild" {build} 27 "ocamlfind" {build & >= "1.5"} 28] 29depopts: [ 30 "lwt" 31] 32conflicts: [ 33 "lwt" {>= "4.0.0"} 34] 35synopsis: "A pure OCaml library to read and write CSV files." 36description: """ 37This is a pure OCaml library to read and write CSV files, including 38all extensions used by Excel — e.g. quotes, newlines, 8 bit 39characters in fields, \\"0 etc. A special representation of rows of CSV 40files with a header is provided. The library comes with a handy 41command line tool called csvtool for handling CSV files from shell 42scripts.""" 43url { 44 src: 45 "https://github.com/Chris00/ocaml-csv/releases/download/1.6/csv-1.6.tar.gz" 46 checksum: [ 47 "sha256=f217f00a397aa79bcd3f1a657a04cb46d08c7d00f4c3836467dad83d08ea6767" 48 "md5=8c995d6dbfb5d0267bbc8a40a59122c6" 49 ] 50}