-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nemo-spinup-forecast"
version = "0.1.0"
description = "Hybrid machine learning tooling for NEMO spinup optimization"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0",
"pandas>=2.0",
"matplotlib>=3.7",
"scipy>=1.10",
"xarray[io]>=2024.0",
"scikit-learn>=1.4",
"skforecast>=0.13",
"dask[array]>=2024.0",
"PyYAML>=6.0"
]
[project.scripts]
nemo-spinup-forecast = "nemo_spinup_forecast.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-pythonpath>=0.7",
"ruff>=0.1",
"pre-commit>=3.5",
"mypy>=1.7"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
nemo_spinup_forecast = [
"configs/techniques_config.yaml",
"configs/ocean_terms.DINO.yaml",
]
[tool.pytest.ini_options]
testpaths = [
"./tests"
]
pythonpath = ["src"]
addopts = "-ra"