-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.21 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
[tool.poetry]
name = "glacier-flow-model"
version = "0.4.0"
description = "Modeling glaciers on a digital elevation model based on mass balance and a modified D8 flow algorithm applied to ice"
maintainers = ["Merlin Unterfinger <[email protected]>"]
authors = [
"Merlin Unterfinger <[email protected]>",
"Manuel Andreas Luck <[email protected]>",
]
license = "MIT"
readme = "README.rst"
homepage = "https://pypi.org/project/glacier-flow-model/"
documentation = "https://glacier-flow-model.readthedocs.io/en/latest/"
repository = "https://github.com/munterfi/glacier-flow-model"
[tool.poetry.dependencies]
python = "^3.11"
numpy = ">=1.26.2,<3.0.0"
numba = ">=0.58.1,<0.61.0"
matplotlib = "^3.8.2"
scipy = "^1.11.4"
rasterio = "^1.3.9"
[tool.poetry.group.dev.dependencies]
black = ">=23.11,<25.0"
codecov = "^2.1.13"
doc8 = "^1.1.1"
flake8 = ">=6.1,<8.0"
mypy = "^1.7.1"
pydata-sphinx-theme = ">=0.14.4,<0.17.0"
pytest = ">=7.4.3,<9.0.0"
pytest-cov = ">=4.1,<7.0"
rstcheck = "^6.2.0"
sphinx = ">=7.2.6,<9.0.0"
tomlkit = ">=0.12.3,<0.14.0"
[tool.mypy]
ignore_missing_imports = true
exclude = ["^docs\\/source\\/conf\\.py$"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"