-
Notifications
You must be signed in to change notification settings - Fork 1
/
img-neural.cabal
51 lines (47 loc) · 1.86 KB
/
img-neural.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
-- Initial img-neural.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: img-neural
version: 0.1.0.0
synopsis: A neural network that recognizes a letter in an image
-- description:
license: MIT
license-file: LICENSE
author: Robert McLaughlin
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-dir: src
data-files: res/A/*.png
, res/not-A/*.png
executable img-neural
main-is: Main.hs
hs-source-dirs: src
build-depends: base >=4.7 && <4.8
, random >=1.0 && <1.1
, hmatrix >=0.16 && <0.17
, convertible >=1.1 && <1.2
, vector >=0.10 && <0.11
, filepath >=1.3 && <1.4
, friday >=0.2 && <0.3
, friday-devil >=0.1 && <0.2
, transformers >=0.3 && <0.4
, hnn >=0.2 && <0.3
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
ghc-options: -Wall
hs-source-dirs: test src
build-depends: base >=4.7 && <4.8
, hmatrix >=0.16 && <0.17
, convertible >=1.1 && <1.2
, vector >=0.10 && <0.11
, filepath >=1.3 && <1.4
, friday >=0.2 && <0.3
, friday-devil >=0.1 && <0.2
, transformers >=0.3 && <0.4
, hnn >=0.2 && <0.3
, hspec >=2.1 && < 2.2