-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.25 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 = "pylfg"
version = "0.1.1a0"
description = "PyLFG is a Python library for working within the Lexical Functional Grammar (LFG) formalism. It provides a set of classes and methods for representing and manipulating LFG structures, including lexical functional structures (f-structures) and c-structures."
authors = ["SekouDiaoNlp, ARS LInguistica <[email protected]>"]
license = "MIT"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.11"
rich = "^13.3.1"
textual-imageview = "^0.1.1"
textual = "^0.10.1"
click = "^8.1.3"
fastapi = "^0.89.1"
networkx = "^3.0"
matplotlib = "^3.6.3"
PlyPlus = "^0.7.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
mypy = "^0.991"
coverage = "^7.1.0"
pytest-cov = "^4.0.0"
pytest-runner = "^6.0.0"
bump2version = "^1.0.1"
docutils = "^0.19"
sphinx = "^6.1.3"
furo = "^2022.12.7"
pyupgrade = "^3.3.1"
bandit = "^1.7.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
skips = ["B311"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.mypy]
warn_unused_configs = true
strict = true
ignore_missing_imports = true
show_error_codes = true
files = "pylfg/"
exclude = ["pylfg/TUI/", "pylfg/WebUI/"]