-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.22 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
[project]
name = "es-vocab"
version = "0.1.0"
description = "ES-VOCAB"
authors = [
{name = "Atef Ben Nasser", email = "[email protected]"},
{name = "Sébastien Gardoll", email = "[email protected]"},
{name = "Guillaume Levavasseur", email = "[email protected]"},
{name = "Sven Rodriguez", email = "[email protected]"},
{name = "Laurent Troussellier", email = "[email protected]"},
]
dependencies = [
"fastapi>=0.111.0",
"rdflib-endpoint>=0.5.1",
"pydantic>=2.8.2",
"pytest>=8.3.1",
"rdflib>=7.0.0",
"uvicorn>=0.30.1"
]
requires-python = "==3.12.3"
readme = "README.md"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.6.2",
"isort>=5.13.2",
"ruff>=0.5.1",
]
deploy = [
"mkdocs>=1.6.0",
"markdown-include>=0.8.1"
]
doc = [
"mkdocs>=1.6.0",
"markdown-include>=0.8.1"
]
[tool.ruff]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)s] %(name)s: %(message)s"
[tool.pdm.scripts]
server.call = "es_vocab.bootstrap:run_app"