-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecision-tree-classifier.cabal
34 lines (32 loc) · 1.13 KB
/
decision-tree-classifier.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
-- Initial decision-tree-classifier.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: decision-tree-classifier
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: John L. Singleton
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable decision-tree-classifier
main-is: Main.hs
extensions: DataKinds
, BangPatterns
-- other-modules:
-- other-extensions:
build-depends: MissingH >= 1.3.0.1
, array >= 0.5.1.0
, base >=4.8 && <4.9
, containers >= 0.5.6.2
, parsec >= 3.1.9
, random >= 1.1
, split >= 0.2.2
, template-haskell >= 2.10.0.0
, text >= 1.2.1.3
hs-source-dirs: src
default-language: Haskell2010