-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrlglue.cabal
51 lines (47 loc) · 2.04 KB
/
rlglue.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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: [email protected]
-- 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