-
Notifications
You must be signed in to change notification settings - Fork 0
/
doh.cabal
36 lines (31 loc) · 981 Bytes
/
doh.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
Name: doh
Version: 0.0.1
Synopsis: TODO
Description: TODO
License: BSD3
License-file: LICENSE
Author: Martin Krauskopf
Maintainer: martin.krauskopf@gmail.com
Copyright: (c) 2013 Martin Krauskopf
Homepage: https://github.com/mkrauskopf/doh
Category: Optimization
Cabal-version: >= 1.8
Build-type: Simple
Source-repository head
Type: git
Location: git://github.com/mkrauskopf/doh.git
Library
GHC-options: -Wall
Exposed-modules: DOH.Knapsack.BaBSolver
Build-depends: base >= 4 && < 5
, containers
, mtl
Test-Suite test
Type: exitcode-stdio-1.0
Main-is: main.hs
hs-source-dirs: ., test
GHC-options: -Wall
Build-depends: base >= 4 && < 5
, hspec >= 1.4
, HUnit
, test-framework-quickcheck2