-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (44 loc) · 1.05 KB
/
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
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "portuguese-pos-dict"
version = "0.1.0"
description = "Portuguese POS dict utilities"
authors = [
"Jaume Ortolà i Font <jaume.ortola@languagetool.com>",
"Pedro Goulart <pedro.goulart@languagetool.com>"
]
readme = "README.md"
packages = [ {include = "pt_dict"} ]
[tool.poetry.dependencies]
python = "^3.10, <3.12"
tqdm = "^4.66.1"
chardet = "^5.2.0"
termcolor = "^2.3.0"
spacy = "^3.6.1"
spacy_syllables = "^3.0.2"
spylls = "^0.1.7"
[tool.poetry.dependencies.dictionary-tools]
path = "./dict_tools"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pycodestyle = "^2.10.0"
pydocstyle = "^6.3.0"
isort = "^5.12.0"
ipykernel = "^6.25.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
pytest-md = "^0.2.0"
pytest-emoji = "^0.2.0"
[[tool.poetry.source]]
name = "PyPI"
priority = "default"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.autopep8]
max_line_length = 120
ignore = "E501"
[tool.isort]
line_length = 120