-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecisiontree-hs.cabal
32 lines (29 loc) · 968 Bytes
/
decisiontree-hs.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
-- Initial decisiontree-hs.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: decisiontree-hs
version: 0.1.0.0
synopsis: Simple decision tree module
-- description:
homepage: https://github.com/wbadart/decisiontree.hs
license: MIT
license-file: LICENSE
author: Will Badart
maintainer: [email protected]
-- copyright:
category: Math
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: DecisionTree, Entropy
other-modules:
-- other-extensions:
build-depends: containers, base >=4.10 && <4.11
hs-source-dirs: src
default-language: Haskell2010
executable interactivedt
hs-source-dirs: src
main-is: Main.hs
other-modules: DecisionTree, Entropy
build-depends: base, containers
ghc-options: -dynamic -fPIC