-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.13 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
[tool.poetry]
name = "aragog"
version = "0.2.9-alpha"
description = "1-D interior dynamics of rocky mantles that are solid, liquid, or mixed phase"
authors = ["Dan J Bower <djbower@users.noreply.github.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [
{ include = "aragog" },
{ include = "notebooks", to = "aragog" },
]
[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=2.0.0"
scipy = "^1.12.0"
netCDF4 = "^1.7.0"
thermochem = "^0.8.2"
matplotlib = "^3.8.3"
typed-configparser = "^1.1.0"
typing-extensions = "^4.10.0"
sphinx = {version = "7.2.6", optional = true}
sphinx-rtd-theme = {version = "2.0.0", optional = true}
sphinxcontrib-bibtex = {version = "2.6.3", optional = true}
setuptools = {version = "70.0.0", optional = true}
click = "^8.1.3"
platformdirs = "^3.10.0"
osfclient = "^0.0.5"
zenodo_get = ">=1.6.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.4"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-bibtex",
"setuptools"
]
[tool.poetry.scripts]
aragog = "aragog.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"