-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.58 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
[project]
name = "OceanOSSE"
description = "Python toolbox for performing Observing System Simulation Experiments (OSSEs) in ocean general circulation models."
keywords = ["oceanography", "modelling", "observations", "OSSE"]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
authors = [{email = "oliver.tooth@noc.ac.uk"},{name = "Ollie Tooth"}]
maintainers = [{name = "Ollie Tooth", email = "oliver.tooth@noc.ac.uk"}]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"dask>=2025.7.0",
"flox>=0.10.6",
"gsw>=3.6.20",
"numbagg>=0.8",
"numba>=0.62",
"numpy>=2.3", # numba 0.62 added support for numpy 2.3
"netCDF4<=1.7.3",
"xarray>=2025.07.1",
"zarr>=3.0.7",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"pytest-cov",
"ruff",
]
[project.urls]
Repository = "https://github.com/AMOCcommunity/OceanOSSE"
Documentation = "https://amoccommunity.github.io/OceanOSSE/"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0.3", "setuptools-scm>=8"]
[tool.setuptools.packages.find]
include = ["OceanOSSE*"]
[tool.setuptools_scm]
fallback_version = "9999"
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"