-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathhasktorch-skeleton.cabal
38 lines (34 loc) · 1 KB
/
hasktorch-skeleton.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
cabal-version: 2.2
name: hasktorch-skeleton
version: 0.0.0.0
synopsis: See README for more info
description: See README for more info
license: MIT
license-file: LICENSE
author: The Hasktorch Team
maintainer: [email protected]
copyright: 2020 The Hasktorch Team
category: Tensors, Machine Learning, AI
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.8.3
common base
ghc-options: -Wall -Wextra -Wno-unrecognised-pragmas -Wno-orphans
default-language: Haskell2010
build-depends:
base >= 4.12 && < 5
, hasktorch >= 0.2 && < 0.3
common binary-base
import: base
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: hasktorch-skeleton
library
import: base
exposed-modules:
HasktorchSkeleton
hs-source-dirs: src
executable example
import: binary-base
main-is: Main.hs
hs-source-dirs: exe