rlglue-0.2.2.0: rlglue.cabal
name: rlglue
version: 0.2.2.0
synopsis: A Haskell codec for RL-Glue.
description: A codec to allow Haskell programs to interact with reinforcement learning
programs using the RL_Glue protocol.
license: Apache-2.0
license-file: LICENSE
author: Richard Alex Hofer
maintainer: rhofer@alumni.cmu.edu
-- copyright:
category: Codec
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/rhofour/rlglue-haskell-codec.git
library
exposed-modules: RL_Glue.Network, RL_Glue.Experiment, RL_Glue.Environment, RL_Glue.Agent,
RL_Glue.TaskSpec
other-modules: Paths_rlglue
-- other-extensions:
build-depends: base >=4.7 && <4.8, network-simple, transformers, exceptions, binary, bytestring,
data-binary-ieee754, parsec, network
hs-source-dirs: src
default-language: Haskell2010
executable skeleton-experiment
Main-is: SkeletonExperiment.hs
build-depends: base >=4.7 && <4.8, network-simple, transformers, exceptions, binary, bytestring,
data-binary-ieee754, network
-- other-modules:
hs-source-dirs: src, src/RL_Glue/Example
default-language: Haskell2010
executable skeleton-environment
Main-is: SkeletonEnvironment.hs
build-depends: base >=4.7 && <4.8, network-simple, transformers, exceptions, binary, bytestring,
data-binary-ieee754, network
-- other-modules:
hs-source-dirs: src, src/RL_Glue/Example
default-language: Haskell2010
executable skeleton-agent
Main-is: SkeletonAgent.hs
build-depends: base >=4.7 && <4.8, network-simple, transformers, exceptions, binary, bytestring,
data-binary-ieee754, random, network
-- other-modules:
hs-source-dirs: src, src/RL_Glue/Example
default-language: Haskell2010