-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecord-encode.cabal
56 lines (51 loc) · 1.84 KB
/
record-encode.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
52
53
54
55
56
name: record-encode
version: 0.2.3
synopsis: Generic encoding of records
description: Generic encoding of records. It currently provides a single, polymorphic function to encode sum types (i.e. categorical variables) as one-hot vectors.
homepage: https://github.com/ocramz/record-encode
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: ocramz fripost org
copyright: 2018 Marco Zocca
category: Data, Data Science, Data Mining, Machine Learning
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.4.3
library
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Data.Record.Encode
Data.Record.Encode.Generics
Data.Record.Encode.Internal
build-depends: base >= 4.7 && < 5
, generics-sop
, generic-trie == 0.3.1
, vector
test-suite spec
default-language: Haskell2010
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: LibSpec
build-depends: base
, record-encode
, generics-sop
, hspec
, QuickCheck
, vector
test-suite doctest
default-language: Haskell2010
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: DocTest.hs
build-depends: base
, record-encode
, doctest
source-repository head
type: git
location: https://github.com/ocramz/record-encode