this repo has no description
1opam-version: "2.0"
2synopsis:
3 "A library for reading and writing common file formats used in bioinformatics like FASTA files"
4maintainer: ["Ryan Moore"]
5authors: ["Ryan Moore"]
6license: "MIT"
7homepage: "https://github.com/mooreryan/bio_io"
8doc: "https://mooreryan.github.io/bio_io/"
9bug-reports: "https://github.com/mooreryan/bio_io/issues"
10depends: [
11 "dune" {>= "2.8"}
12 "bisect_ppx" {dev}
13 "core_kernel" {>= "v0.12" & < "v0.15"}
14 "ppx_sexp_conv" {>= "v0.12" & < "v0.15"}
15 "ocaml" {>= "4.07.0"}
16 "ocaml" {>= "4.08.0" & with-test}
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/mooreryan/bio_io.git"
34url {
35 src: "https://github.com/mooreryan/bio_io/archive/v0.1.1.tar.gz"
36 checksum: [
37 "md5=c23adc905dfb7eb2157a4418a20553f5"
38 "sha512=19de9e409154dbace9b428e71953b65f0060081c4fcd07d1ed7fff7e96c8c1274a09fdd8c6e96049da891748055689bb591d957ba3a4717da58e520f0d14d8bd"
39 ]
40}