-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (82 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (82 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "wofostat"
version = "1.0.0"
description = "Assumptions tracking for WOFOST Potato using behaviour-driven development and model cards."
authors = [
"James Bristow <James.Bristow@plantandfood.co.nz>",
"Jingjing Zhang <Jingjing.Zhang@plantandfood.co.nz>",
"Chris Van Houtte <Chris.Vanhoutte@plantandfood.co.nz>"
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Plant-Food-Research-Open/wofost-assumptions-tracking"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
calisim = "^0.6.3"
pcse = "^6.0.12"
behave = "^1.3.3"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^3.0.1"
sphinx = "^8.1.3"
sphinx-argparse = "^0.5.2"
sphinxcontrib-applehelp = "^2.0.0"
sphinxcontrib-devhelp = "^2.0.0"
sphinxcontrib-htmlhelp = "^2.1.0"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^2.0.0"
sphinxcontrib-serializinghtml = "^2.0.0"
autodoc-pydantic = "^2.2.0"
myst-nb = "^1.1.2"
[tool.poetry.group.dev.dependencies]
ipython = "^8.28.0"
ipywidgets = "^8.1.5"
jupyter-core = "^5.7.2"
pytest = "^8.3.3"
coverage = "^7.6.3"
pre-commit = "^4.0.1"
pytest-cov = "^5.0.0"
mypy = "^1.12.0"
pytest-mock = "^3.14.0"
pytest-xdist = "^3.6.1"
pytest-env = "^1.1.5"
types-pyyaml = "^6.0.12.20240917"
ruff = "^0.7.0"
jupyterlab = "^4.3.1"
codespell = "^2.4.1"
tomli = "^2.2.1"
pytest-md-report = "^0.6.3"
notebook = "^7.4.7"
jupyterhub = "^5.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py310"
line-length = 88
exclude = ["*.ipynb"]
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
indent-style = "tab"
[tool.ruff.lint]
extend-select = [
"UP",
"F",
"E",
"W",
"I",
"NPY",
"RUF"
]
extend-ignore = [
"W191",
"E101",
"RUF012"
]
[tool.codespell]
skip = './docs/build,poetry.lock'
count = true
quiet-level = 3
ignore-words-list = 'sies,SIES,te'
[tool.bandit]
skips = ["B101", "B113"]