-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (37 loc) · 964 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
34
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "rdfproxy"
version = "0.2.0"
description = ""
authors = [
"Birger Schacht <[email protected]>",
"Lukas Plank <[email protected]>"
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
sparqlwrapper = "^2.0.0"
pydantic = "^2.9.2"
httpx = "^0.28.1"
rdflib = "^7.1.1"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.0"
deptry = "^0.20.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-randomly = "^3.15.0"
mkdocstrings = {extras = ["python"], version = "^0.27.0"}
mkdocs-material = "^9.5.50"
[tool.poetry.group.examples.dependencies]
fastapi = {extras = ["standard"], version = "^0.115.2"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.deptry.package_module_name_map]
sparqlwrapper = "SPARQLWrapper"
[tool.deptry]
extend_exclude = ["examples"]
[tool.pytest.ini_options]
markers = [
"remote: Mark tests that connect to a remote service",
]