-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.35 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 = "evalml"
version = "0.1.0-beta.1"
description = "Evaluation CLI for ML models"
readme = "README.md"
authors = [
{ name = "Francesco Zanetta", email = "francesco.zanetta@meteoswiss.ch" },
{ name = "Daniele Nerini", email = "daniele.nerini@meteoswiss.ch" },
]
requires-python = ">=3.11"
dependencies = [
"snakemake<9.10", # https://github.com/snakemake/snakemake/issues/3289
"snakemake-executor-plugin-slurm",
"click",
"meteodata-lab>=0.4.0",
"anemoi-datasets>=0.5.31",
"mlflow>=3.1.1",
"pydantic>=2.11.7",
"toml>=0.10.2",
"netcdf4>=1.7.2",
"shapely>=2.1.2",
"cartopy>=0.25.0",
"pyproj>=3.7.2",
"earthkit-plots",
"marimo>=0.19.0",
"geopandas>=0.14.0",
"peakweather",
]
[project.optional-dependencies]
kerchunk = [
"kerchunk",
"zarr<3.0.0",
"fastparquet",
"ujson"
]
[project.scripts]
evalml = "evalml:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
"snakefmt>=0.11.0",
]
[tool.pytest.ini_options]
markers = [
"longtest: mark tests that take a long time to run, e.g. integration tests",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/evalml",
"src/verification",
"src/data_input"
]
[tool.uv.sources]
peakweather = { git = "https://github.com/MeteoSwiss/PeakWeather.git" }