this repo has no description
1opam-version: "2.0" 2maintainer: [ 3 "Louis Mandel <lmandel@us.ibm.com>" 4] 5authors: [ 6 "Guillaume Baudart" 7 "Louis Mandel" 8] 9homepage: "https://github.com/IBM/openai-gym-ocaml" 10bug-reports: "https://github.com/IBM/openai-gym-ocaml/issues" 11license: "Apache-2.0" 12dev-repo: "git+https://github.com/IBM/openai-gym-ocaml.git" 13 14build: [ 15 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs] 17] 18 19depends: [ 20 "ocaml" {>= "4.03.0"} 21 "dune" 22 "ocaml-migrate-parsetree" {build & < "2.0.0"} 23 "atdgen" {build} 24 "atd" 25 "yojson" 26 "cohttp-lwt-unix" {>= "1.0.0"} 27] 28 29synopsis: "OCaml binding for openai Gym toolkit" 30 31description: """ 32openai-gym is an OCaml binding for [openai-gym](https://github.com/openai/gym) 33open-source library. It is built as a client for the [gym-http-api](https://github.com/openai/gym-http-api) REST API. 34""" 35 36url { 37 src: "https://github.com/IBM/openai-gym-ocaml/archive/0.01.tar.gz" 38 checksum: [ 39 "sha256=61b9b38fb2e56f5171f949b5781c847628262914c21ab0e70ffab14d72119301" 40 "md5=e74f45cdf57969d4758b9d40274cb7a4" 41 ] 42}