forked from ICESEE-project/ICESEE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
79 lines (69 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ICESEE"
version = "0.1.9"
description = "A state-of-the-art data assimilation software package for coupling seemlessly with ice sheet models."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Brian Kyanjo", email = "briankyanjo@u.boisestate.edu"},
]
urls = {Homepage = "https://github.com/ICESEE-project/ICESEE"}
# ---- USER RUNTIME DEPENDENCIES (soft-pinned) ----
dependencies = [
"numpy",
"scipy",
"h5py",
"zarr<3.0.0",
"dask",
"psutil",
"tqdm",
"pyyaml",
"numcodecs",
"gstools",
"jax",
"jaxlib",
]
[project.optional-dependencies]
# ---- MPI SUPPORT ----
mpi = [
"mpi4py",
"bigmpi4py",
]
# ---- VISUALIZATION / NOTEBOOKS ----
viz = [
"matplotlib",
"pandas",
"jupyter",
]
# ---- DEVELOPMENT / CI ----
dev = [
"pytest",
"pytest-cov",
"ruff",
"black",
"mypy",
"build",
"pip-tools",
"cython",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["ICESEE", "ICESEE.*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
ICESEE = [
"**/*.yaml",
"**/*.yml",
"**/*.json",
]
# ---- To update the dev/ci requirements file ----
# important comands to regenerate the requirements/ci.txt file
# rm -f requirements/ci.txt
# python -m pip install -U pip pip-tools
# pip-compile pyproject.toml --extra dev --extra mpi --extra viz -o requirements/ci.txt
# --- To update the main requirements file ----