forked from COSIMA/regional-mom6
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1018 Bytes
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
[project]
name = "regional_mom6"
description = "Automatic generation of regional configurations for Modular Ocean Model 6"
keywords = ["mom6", "regional", "ocean modeling", "python"]
authors = [
{name = "COSIMA community and outside contributors"},
]
dynamic = ["version"]
readme = "README.md"
dependencies = [
"bottleneck",
"dask[array]",
"dask[distributed]",
"netCDF4",
"numpy >= 1.17.0, < 2.0.0",
"scipy >= 1.2.0",
"xarray",
"xesmf >= 0.8.4",
"f90nml >= 1.4.1",
"copernicusmarine >= 2.0.0,<2.1.0",
"pint_xarray"
]
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["regional_mom6", "regional_mom6.demos.premade_run_directories"]
[tool.setuptools.package-dir]
"regional_mom6.demos" = "demos"
[tool.setuptools.package-data]
"regional_mom6" = ["*.txt"] # include rm6_unit_defs.txt here
"regional_mom6.demos.premade_run_directories" = ["**/*"]
[tool.setuptools_scm]
write_to = "regional_mom6/_version.py"