-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluanlp-scm-0.rockspec
52 lines (51 loc) · 1.96 KB
/
luanlp-scm-0.rockspec
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
package = "luanlp"
version = "scm-0"
source = {
url = "https://codeberg.org/leso-kn/LuaNLP/archive/main.tar.gz",
dir = "luanlp"
}
description = {
summary = "Natural Language Processing Library for Lua",
detailed = "The goal of this library is to provide native support for [Natural Language Processing tasks](https://en.wikipedia.org/wiki/Natural_language_processing#Common_NLP_tasks) in Lua.",
homepage = "https://codeberg.org/leso-kn/LuaNLP",
license = "MIT"
}
build = {
type = "builtin",
modules = {
["luanlp.keyword.rake"] = "luanlp/keyword/rake.lua",
["luanlp.lemmatizer.wordnet"] = "luanlp/lemmatizer/wordnet.lua",
["luanlp.path"] = "luanlp/path.lua",
["luanlp.pos.conll2000_test"] = "luanlp/pos/conll2000_test.lua",
["luanlp.pos.conll2003_test"] = "luanlp/pos/conll2003_test.lua",
["luanlp.pos.perceptron"] = "luanlp/pos/perceptron.lua",
["luanlp.sent.test_vader"] = "luanlp/sent/test_vader.lua",
["luanlp.sent.vader"] = "luanlp/sent/vader.lua",
["luanlp.stemmer.porter"] = "luanlp/stemmer/porter.lua",
["luanlp.stemmer.test"] = "luanlp/stemmer/test.lua",
["luanlp.stopword.stopwords"] = "luanlp/stopword/stopwords.lua",
["luanlp.summarize.textteaser"] = "luanlp/summarize/textteaser.lua",
["luanlp.tokenizer.nb"] = "luanlp/tokenizer/nb.lua",
["luanlp.tokenizer.supervised"] = "luanlp/tokenizer/supervised.lua",
["luanlp.tokenizer.tokenization"] = "luanlp/tokenizer/tokenization.lua",
["luanlp.tokenizer.treebank"] = "luanlp/tokenizer/treebank.lua",
},
copy_directories = {
"luanlp/lemmatizer/wordnet",
"luanlp/pos/conll2000",
"luanlp/sent/sentiment_labelled_sentences",
"luanlp/sent/vader_lexicons",
"luanlp/stemmer/data",
"luanlp/stopword/stoplists",
"luanlp/tokenizer/data"
}
}
dependencies = {
"json-lua ~> 0.1",
"lrexlib-pcre ~> 2",
"utf8 ~> 1"
}
rockspec_format = "3.0"
test_dependencies = {
"inspect ~> 3"
}