this repo has no description
at main 1.3 kB view raw
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Richard Jones" 4 "Christophe Troestler" ] 5tags: [ "csv" "database" "science" ] 6license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 7homepage: "https://github.com/Chris00/ocaml-csv" 8dev-repo: "git+https://github.com/Chris00/ocaml-csv.git" 9bug-reports: "https://github.com/Chris00/ocaml-csv/issues" 10doc: "https://Chris00.github.io/ocaml-csv/doc" 11build: [ 12 ["dune" "subst"] {dev} 13 ["dune" "build" "-p" name "-j" jobs] 14 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.03.0"} 18 "dune" {< "2.0"} 19 "base-bytes" 20 "base-unix" 21] 22synopsis: "A pure OCaml library to read and write CSV files." 23description: """ 24This is a pure OCaml library to read and write CSV files, including 25all extensions used by Excel — e.g. quotes, newlines, 8 bit characters 26in fields, \\"0 etc. A special representation of rows of CSV files with 27a header is provided. The library comes with a handy command line tool 28called csvtool for handling CSV files from shell scripts.""" 29url { 30 src: 31 "https://github.com/Chris00/ocaml-csv/releases/download/2.1/csv-2.1.tbz" 32 checksum: [ 33 "sha256=8fadcfa50fa809151e98d344accab9d3dba6cd775e8e18d8f5c773c89959ee31" 34 "md5=de280eb23d436d3f04b99e4b7272c8b1" 35 ] 36}