-
Notifications
You must be signed in to change notification settings - Fork 4
/
csp.cabal
33 lines (30 loc) · 1.04 KB
/
csp.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
Name: csp
Version: 1.4.0
Description: Constraint satisfaction problem (CSP) solvers
License: LGPL
License-file: LICENSE
Author: Andrei Barbu <andrei@0xab.com>
Maintainer: Andrei Barbu <andrei@0xab.com>
Category: Control, AI, Constraints, Failure, Monads
Build-Type: Simple
cabal-version: >= 1.10
synopsis:
Discrete constraint satisfaction problem (CSP) solver.
extra-source-files: README.md
source-repository head
type: git
location: http://github.com/abarbu/csp-haskell
Library
Build-Depends: base >= 3 && < 5, mtl >= 2, containers, nondeterminism >= 1.4
Exposed-modules:
Control.Monad.CSP
ghc-options: -Wall
Hs-Source-Dirs: src
default-extensions: CPP
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: test.hs
build-depends: base >= 4 && < 5, tasty, tasty-hunit, nondeterminism, csp
default-language: Haskell2010