-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 870 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
[tool.poetry]
name = "icenlpy"
version = "0.2.1"
description = "A python wrapper for the IceNLP java library"
authors = ["Hinrik Hafsteinsson <[email protected]>"]
readme = "README.md"
packages = [{ include = "icenlpy", from = "src" }]
include = [{ path = "src/icenlpy/resources/IceNLP/dist/IceNLPCore.jar" }]
[tool.poetry.scripts]
icenlpy = "icenlpy.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
tomlkit = "^0.12.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"
# pytest-mock = "^3.12.0"
[tool.pytest.ini_options]
pythonpath = ["src"]
minversion = "6.0"
addopts = "-vv"
testpaths = ["test"]
filterwarnings = ["ignore::DeprecationWarning", "ignore::UserWarning"]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s %(levelname)s %(message)s"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"