-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.44 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 = "esgvoc"
version = "0.1.2"
description = "python library and CLI to interact with WCRP CV"
authors = [
{name = "TROUSSELLIER Laurent", email = "[email protected]"},
{name = "Gardoll Sébastien", email = "[email protected]"}
]
dependencies = [
"idna>=3.10",
"pydantic>=2.9.2",
"sqlalchemy>=2.0.36",
"sqlmodel>=0.0.22",
"pyld>=2.0.4",
"requests>=2.32.3",
"toml>=0.10.2",
"typer>=0.15.0",
]
readme = "README.md"
requires-python = ">= 3.12"
[build-system]
requires = ["hatchling==1.26.3"]
build-backend = "hatchling.build"
[project.urls]
Repository = "https://github.com/ESPRI-Mod/cmipld"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.3",
"jupyter-console>=6.6.3",
"mypy>=1.13.0",
"pytest-mock>=3.14.0",
"isort>=5.13.2",
]
[tool.rye.scripts]
ev = { cmd = "python src/esgvoc/cli/main.py" }
evc = { cmd = "python src/esgvoc/cli/main.py config" }
evcp = { cmd = "python src/esgvoc/cli/main.py config projects." }
evg = { cmd = "python src/esgvoc/cli/main.py get" }
evs = {cmd = "python src/esgvoc/cli/main.py status"}
evv = {cmd = "python src/esgvoc/cli/main.py valid"}
[project.scripts]
esgvoc = "esgvoc.cli.main:main"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/esgvoc"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "ERROR"
log_cli_format = "%(asctime)s [%(levelname)s] %(name)s: %(message)s"