-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.03 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
[project]
name = "esgvoc-backend"
version = "0.1.0"
description = "Python backend for the library ESGVOC"
authors = [
{name = "Sébastien Gardoll", email = "sebastien@gardoll.fr"},
{name = "Guillaume Levavasseur", email = "guillaume.levavasseur@ipsl.fr"},
{name = "Laurent Troussellier", email = "laurent.troussellier@ipsl.fr"},
]
license = {file = ".LICENSE.txt"}
dependencies = [
"esgvoc @ git+https://github.com/ESGF/esgf-vocab@integration",
"fastapi>=0.115.8",
"uvicorn>=0.34.0",
]
readme = "README.md"
requires-python = ">= 3.12, <3.13"
[project.urls]
Repository = "https://github.com/ESPRI-Mod/esgf-vocab-backend"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.13.0",
"isort>=5.13.2",
"pre-commit>=4.1.0",
"ruff>=0.9.4",
"pytest>=8.3.4",
"httpx>=0.28.1",
]
[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.rye.scripts]
server.call = "esgvoc_backend.start:main"