-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (34 loc) · 1018 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
37
38
39
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {}}
include-package-data = true
[tool.setuptools.package-data]
"my_package" = ["*.py"]
[project]
name = "DIFFICE_jax"
version = "0.0.10"
authors = [
{ name="Yongji Wang", email="[email protected]" },
{ name="Ching-Yao Lai", email="[email protected]" },
]
description = "A differentiable neural-network solver for data assimilation of ice shelves written in JAX"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"jax >= 0.4.20",
"jaxlib >= 0.4.20",
"tensorflow-probability >= 0.23.0",
"matplotlib >= 3.8.0",
"optax >= 0.1.7"
]
[project.urls]
Homepage = "https://github.com/YaoGroup/DIFFICE_jax"
Issues = "https://github.com/YaoGroup/DIFFICE_jax/issues"
repository = "https://github.com/YaoGroup/DIFFICE_jax"