-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 976 Bytes
/
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
[tool.poetry]
name = "tunax"
version = "0.1.1"
description = "Differential calibrator of the vertical ocean turbulence closures."
authors = ["Gabriel Mouttapa <gabriel.mouttapa@univ-grenoble-alpes.fr>", "Julien Le Sommer <julien.lesommer@univ-grenoble-alpes.fr>"]
license = "LICENSE"
readme = "README.md"
repository = "https://github.com/meom-group/tunax"
keywords = ["ocean", "closure", "calibration", "differential", "turbulence"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
packages = [
{ include = "tunax" }
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
equinox = "^0.11.7"
optax = "^0.2.3"
xarray = "^2024.9.0"
netcdf4 = "^1.7.1.post2"
jax = "^0.4.34"
jaxtyping = "^0.2.34"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.1.1"
matplotlib = "^3.9.2"
pytest = "^8.3.3"
coverage = "^7.6.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"