-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.48 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
56
57
[tool.poetry]
name = "probtest"
version = "3.2"
description = "Probtest is a suite of python scripts to test various aspects of weather and climate models. Even though it is mainly developed for the ICON model, it does not contain ICON-specific definitions in the source code but allows to model specifics in a configuration script."
authors = ["SENC <senc@meteoswiss.ch>"]
license = "BSD 3"
readme = "README.md"
[tool.poetry.scripts]
probtest = "probtest:cli"
[tool.poetry.dependencies]
python = "^3.10"
click = ">=8.1.7"
Jinja2 = ">=3.1.4"
matplotlib = ">=3.9.2"
netCDF4 = ">=1.7.2"
numpy = ">=1.26"
pathlib = ">=1.0.1"
pandas = ">=2.2.3"
regex = ">=2024.11.6"
xarray = ">=2024.11.0"
types-python-dateutil = "^2.9.0"
[tool.mypy]
allow_untyped_defs = true
ignore_missing_imports = true
follow_imports = "silent"
strict_optional = true
packages = ["engine", "tests", "util", "visualize"]
# Development tools: formatting, linting, IDE helpers
[tool.poetry.group.dev.dependencies]
black = ">=24.10.0"
codespell = ">=2.3.0"
flake8 = ">=7.1.1"
Flake8-pyproject = ">=1.2.3"
ipdb = ">=0.13.13"
ipython = ">=8.30.0"
isort = ">=5.13.2"
mypy = ">=1.13.0"
pre-commit = ">=4.0.1"
pre-commit-hooks = ">=5.0.0"
pydocstyle = ">=6.3.0"
pylint = ">=3.3.1"
rope = ">=1.13.0"
rstcheck = ">=6.2.4"
# Testing tools: pytest & coverage
[tool.poetry.group.test.dependencies]
pytest = ">=8.3.3"
pytest-cov = ">=6.0.0"
coverage = ">=7.6.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"