-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (43 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
[tool.poetry]
name = "dictionary-tools"
version = "0.1.2"
description = "LT Dictionary tools for building, compiling, and deploying binary dictionary files"
authors = [
"Jaume Ortolà i Font <[email protected]>",
"Pedro Goulart <[email protected]>"
]
readme = "README.md"
packages = [ {include = "lib"} ]
[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"
pytest = "^7.4.4"
[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