-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (69 loc) · 1.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "fm2prof"
version = "2.3.3"
description = ""
authors = ["Koen Berends <[email protected]>"]
license = "GNU LGPL v3"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
pandas = "^2.2.1"
numpy = "^1.26"
netCDF4 = "^1.6.0"
scipy = "^1.11"
scikit-learn = "^1.3.0"
geojson = "^3.1"
Shapely = "^2.0"
click = "^8.1"
matplotlib = "^3.8.0"
typer = "^0.9.0"
tqdm = "^4.64.0"
notebook = "^7.1.2"
rtree = "^1.3.0"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.1.0"
pytest = "^8.1.1"
pyinstaller = "^6.5.0"
ipywidgets = "^8.1.2"
ipympl = "^0.9.3"
markdown-exec = {extras = ["ansi"], version = "^1.8.0"}
ruff = "^0.6.3"
pytest-mock = "^3.14.0"
[tool.poetry.group.docs.dependencies]
mike = "^2.0.0"
mkdocs-git-revision-date-localized-plugin = "^1.2.4"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.13"
mkdocs-material-extensions = "^1.3.1"
mkdocs-jupyter = "^0.24.6"
mkdocstrings-python = "^1.9.0"
mkdocs-exclude = "^1.0.2"
mkdocs-autorefs = "^1.0.1"
mkdocs-glightbox = "^0.3.7"
mkdocs-git-committers-plugin-2 = "^2.3.0"
[tool.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocs-jupyter",
"mkdocstrings-python",
"mkdocs-exclude",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff]
line-length = 120
ignore = ["DTZ005", "DTZ001"]
exclude = ["scripts"]
[tool.ruff.per-file-ignores]
"tests/**" = ["D100", "D101", "D102", "D103", "D104", "PT001", "ANN201", "S101", "PLR2004", "ANN001"]