-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 866 Bytes
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
[tool.poetry]
name = "subsettools"
version = "2.0.10"
description = "Subsetting tools and utilities for ParFlow"
authors = ["George Artavanis, Amanda Triplett"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = ">=1.23.0"
requests = ">=2.28.2"
pftools = ">=1.3.10"
hf-hydrodata = ">=1.2.5"
pylint = ">=3.1.0"
pandas = ">=1.3.5"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.0"
pytest-cov = ">=4.1.0"
jupyter = ">=1.0.0"
matplotlib = ">=3.7.2"
black = ">=23.9.1"
sphinx-autoapi = ">=3.0.0"
sphinx-rtd-theme = ">=1.3.0"
sphinx = "6.2.1"
myst-nb = {git = "https://github.com/executablebooks/MyST-NB.git"}
[tool.pylint.messages_control]
generated-members = ["domain", "domaininput", "indi_input"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"