-
Notifications
You must be signed in to change notification settings - Fork 0
/
tokenize.cabal
68 lines (58 loc) · 1.44 KB
/
tokenize.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
57
58
59
60
61
62
63
64
65
66
67
68
cabal-version: >=1.10
name: tokenize
version: 0.3.0.1
synopsis: Simple tokenizer for English text
description: Simple tokenizer for English text.
license: BSD3
license-file: LICENSE
author: Grzegorz Chrupała
maintainer: Andreas Abel
homepage: https://github.com/haskell/tokenize
bug-reports: https://github.com/haskell/tokenize/issues
category: Natural Language Processing
build-type: Simple
tested-with:
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.6
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/haskell/tokenize
library
hs-source-dirs: src
exposed-modules:
NLP.Tokenize
NLP.Tokenize.Text
NLP.Tokenize.String
-- Packages needed in order to build this package.
build-depends:
base >= 4 && < 5
, split >= 0.1
, text
default-language: Haskell2010
benchmark bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs: tests/src
build-depends:
tokenize
, base
, bytestring
, criterion >= 1
, deepseq
, filepath >= 1.3.0.1
, split >= 0.1.2.3
, text >= 0.11.3.0
default-language: Haskell2010
ghc-options: -Wall -main-is Bench