forked from beastaugh/hatt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hatt.cabal
69 lines (62 loc) · 2.46 KB
/
hatt.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
69
Name: hatt
Version: 1.6.0.0
Synopsis: A truth table generator for classical propositional logic.
Description: Hatt is a command-line program which prints truth tables
for expressions in classical propositional logic, and a
library allowing its parser, evaluator and truth table
generator to be used in other programs. It includes support
for converting logical expressions into several normal
forms.
License: BSD3
License-file: LICENSE
Author: Benedict Eastaugh
Maintainer: benedict@eastaugh.net
Copyright: (c) 2012 Benedict Eastaugh
Homepage: http://extralogical.net/projects/hatt
Category: Logic
Cabal-version: >= 1.8
Build-type: Simple
Extra-source-files: README.md,
CHANGELOG
Source-repository head
Type: git
Location: git://github.com/beastaugh/hatt.git
Library
Hs-Source-Dirs: src
GHC-options: -Wall
Build-depends: base >= 4 && < 5,
transformers >= 0.3,
containers >= 0.3 && < 0.6,
parsec >= 3.0 && < 3.2,
QuickCheck >= 2.4,
ansi-wl-pprint >= 0.6 && < 0.7
Exposed-modules: Data.Logic.Propositional,
Data.Logic.Propositional.Tables,
Data.Logic.Propositional.NormalForms
Other-modules: Data.Logic.Propositional.Core,
Data.Logic.Propositional.Parser
Executable hatt
Main-Is: src/hatt.hs
GHC-options: -Wall
Build-depends: base >= 4 && < 5,
hatt,
cmdargs >= 0.7,
haskeline >= 0.6
Test-Suite test-hatt
Type: exitcode-stdio-1.0
Main-is: test/main.hs
GHC-options: -Wall
Build-depends: base >= 4 && < 5,
hatt,
test-framework >= 0.4.1,
test-framework-quickcheck2
Test-Suite test-parser
Type: exitcode-stdio-1.0
Main-is: test/parser-test.hs
GHC-options: -Wall
Build-depends: base >= 4 && < 5,
hatt,
HUnit,
test-framework >= 0.4.1,
test-framework-hunit,
test-framework-quickcheck2