-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.02 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
[build-system]
requires = ["setuptools>=42", "setuptools-scm>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "NEDAS"
dynamic = ["version"]
authors = [
{name="Yue Ying", email="yue.ying@nersc.no"},
]
description = "Next-generation Ensemble Data Assimilation System"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pyproj",
"pyshp",
"netCDF4",
"PyYAML",
]
[project.optional-dependencies]
all = ["mpi4py", "numba", "pyFFTW", "pygrib", "opencv", "tensorflow", "torch"]
mpi = ["mpi4py"]
jit = ["numba"]
fftw = ["pyFFTW"]
grib = ["pygrib"]
alignment = ["opencv"]
emulator = ["tensorflow", "torch"]
[project.scripts]
nedas-run = "NEDAS.__main__:main"
[project.urls]
Homepage = "https://github.com/nansencenter/NEDAS"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools_scm]
write_to = "NEDAS/_version.py"