forked from jgomezdans/pyrealm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (60 loc) · 1.61 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
[tool.poetry]
name = "pyrealm"
version = "0.10.1"
description = "Python implementations of REALM models"
authors = ["David Orme <[email protected]>"]
homepage = "https://pyrealm.readthedocs.io/"
repository = "https://github.com/davidorme/pyrealm"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
]
license = "MIT"
packages = [
{ include = "pyrealm" },
{ include = "pyrealm_build_data", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.16.5"
scipy = "^1.7.3"
tabulate = "^0.8.10"
dacite = "^1.6.0"
graphviz = "*"
[tool.poetry.group.types.dependencies]
types-tabulate = "^0.9.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
pytest-flake8 = "^1.1.1"
pytest-cov = "^3.0.0"
pytest-mypy = "^0.9.1"
pytest-mock = "^3.8.1"
pytest-profiling = "^1.7.0"
[tool.poetry.group.dev.dependencies]
black = { version = "^22.10.0", allow-prereleases = true }
pre-commit = "^3.2.0"
flake8 = "^4.0.1"
flake8-docstrings = "^1.6.0"
mypy = "^0.991"
isort = "^5.12.0"
pandas = ">1.3.0"
matplotlib = "^3.5.2"
ipython = "^8.9.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.0"
sphinxcontrib-bibtex = "^2.6.1"
myst-nb = "^1.0.0"
sphinx-rtd-theme = "^2.0.0"
autodocsumm = "^0.2.8"
pydocstyle = "^6.1.1"
xarray = "^2023.4.0"
sphinx-external-toc = "^1.0.0"
netcdf4 = "^1.6.3"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"