-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.42 KB
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "graph-db-interface"
version = "2.0.1"
description = "A simple interface to interact with a GraphDB instance"
authors = ["Jan-Felix Klein <janfelixklein@ooglemail.com>", "Nico Brandt <nico.g.brandt@gmail.com>", "Sören Weindel <soeren.weindel@kit.edu>", "Etienne Hoffmann <etienne.hoffmann@kit.edu>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
rdflib = "==7.1.3"
requests = "^2.32.3"
python-snappy = "^0.7.3"
pydantic = "^2.11.7"
regex = "^2024.11.6"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
pytest = "^8.2.0"
pylint = "^3.3.4"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"broad-exception-caught",
"missing-function-docstring",
"missing-module-docstring",
"line-too-long",
"logging-fstring-interpolation",
"pointless-string-statement",
"protected-access",
"redefined-builtin",
"too-many-ancestors",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-nested-blocks",
"too-many-positional-arguments",
"too-many-public-methods",
"too-many-return-statements",
"too-many-statements",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --strict-markers"
log_cli = "true"
log_cli_level = "info"