forked from studio-ousia/luke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 823 Bytes
/
pyproject.toml
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
[tool.poetry]
authors = ["Ikuya Yamada <[email protected]>"]
description = ""
name = "luke"
version = "0.1.0"
[tool.poetry.dependencies]
Click = "*"
comet-ml = {version = "*", optional = true}
joblib = "*"
marisa-trie = "*"
numpy = "*"
pyicu = {version = "*", optional = true}
pyjnius = {version = "*", optional = true}
python = "^3.6.1"
sentencepiece = "*"
seqeval = "*"
tensorflow = "*"
torch = "*"
tqdm = "*"
transformers = "*"
ujson = "*"
wikipedia2vec = "*"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
flake8 = "^3.8.3"
mypy = "^0.780"
pre-commit = "^2.5.1"
pytest = "^5.2"
[tool.poetry.extras]
comet = ["comet-ml"]
icu = ["pyicu"]
opennlp = ["pyjnius"]
[tool.poetry.scripts]
luke = 'luke.cli:cli'
[tool.black]
line-length = 120
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]