-
Notifications
You must be signed in to change notification settings - Fork 0
/
planning.cabal
68 lines (63 loc) · 1.63 KB
/
planning.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 25850e19ff08d877c79f1c5fd74c1e5265ca98e9b956bcf77011e95ebf6ab938
name: planning
version: 0.3.1
synopsis: A library for parsing and representing planning languages
description: A type-safe, extensible PDDL parsing and representation library.
category: AI, Planning
homepage: https://github.com/ronwalf/Planning
author: Ron Alford <ronwalf@volus.net>
maintainer: Ron Alford <ronwalf@volus.net>
license: BSD3
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: git://github.com/ronwalf/Planning.git
library
exposed-modules:
Planning.Expressions
Planning.Records
Planning.Util
Planning.Wouter
Planning.PDDL.PDDL3_0
Planning.PDDL.Parser
Planning.PDDL.Representation
Planning.PDDL.Pond
Planning.PDDL.NDPDDL
Planning.PDDL.FF
other-modules:
Planning.PDDL.ParserTest
Paths_planning
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
Cabal >=2.0
, QuickCheck >=2.0
, base >=4.10 && <10
, parsec >=3
, prettyprinter >=1.2
, syb >=0.2
, text >=1.2
default-language: Haskell2010
executable pddlcheck
main-is: pddlcheck.hs
other-modules:
Paths_planning
hs-source-dirs:
src-cmdline
ghc-options: -Wall
build-depends:
Cabal >=2.0
, QuickCheck >=2.0
, base >=4.10 && <10
, parsec >=3
, planning
, prettyprinter >=1.2
, text >=1.2
default-language: Haskell2010