-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (59 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "json-logic-asp"
version = "0.3.2"
description = "Python JSON Logic evaluator in ASP"
homepage = "https://github.com/barreeeiroo/JSON-Logic-ASP/"
repository = "https://github.com/barreeeiroo/JSON-Logic-ASP"
documentation = "https://json-logic-asp.readthedocs.io/"
authors = ["Diego Barreiro Perez <[email protected]>"]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "json_logic_asp" },
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
cuid2 = "^2.0.0"
# Newer version added extra safeguards which slowdown Gringo grounding, need further investigation...
clingo = "5.5.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
ruff = "^0.1.8"
mypy = "^1.7.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.3"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov json_logic_asp/ --cov-report html --cov-report xml --cov-report term"
testpaths = [
"tests",
]
log_level = "DEBUG"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true