-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.46 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxparrow"
authors = [
{ name = "Vadim Bertrand", email = "[email protected]" },
{ name = "Victor E V Z De Almeida", email = "[email protected]" },
{ name = "Julien Le Sommer", email = "[email protected]" },
{ name = "Emmanuel Cosme", email = "[email protected]" },
]
description = "Computes the inversion of the cyclogeostrophic balance based on a variational formulation approach, using JAX"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["cyclogeostrophy", "eddy", "flow", "geostrophy", "jax", "swirl", "velocity"]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"netCDF4",
"numpy",
"pyyaml",
"tqdm",
"xarray",
"jax",
"jaxlib",
"jaxtyping",
"optax"
]
dynamic = ["version"]
[project.optional-dependencies]
notebook = ["jupyterlab", "matplotlib"]
dev = ["pytest", "sphinx", "myst_parser", "twine", "build"]
[project.scripts]
jaxparrow = "jaxparrow:main"
[project.urls]
"Homepage" = "https://jaxparrow.readthedocs.io/"
"Bug Tracker" = "https://github.com/meom-group/jaxparrow/issues"
[tool.setuptools.dynamic]
version = {attr = "jaxparrow.version.__version__"}
[tool.setuptools.packages]
find = {}