-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.05 KB
/
pyproject.toml
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
[project]
name = "Deep-Learning-Weather-Prediction-Benchmark"
version = "0.0.1"
authors = [
{ name="Matthias Karlbauer", email="[email protected]" }
]
description = "Package to benchmark various deep learning architecture on Navier-Stokes and the WeatherBench datasets."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"dgl==1.1.2.post1",
"ecmwflibs==0.6.3",
"einops==0.8.0",
"healpy==1.16.6",
"hydra-core==1.3.2",
"netcdf4==1.6.2",
"numba==0.60.0",
"numpy==1.26",
"pydantic==2.8.2"
"reproject==0.14.0",
"s3fs==2024.6.1",
"scikit-learn==1.5.1",
"scipy==1.13.1",
"tensorboard==2.17.0",
"timm==1.0.8",
"torch==2.2.1",
"torchvision==0.17.1",
"torchinfo==1.8.0",
"tqdm==4.66.4",
"xarray[complete]==2024.7.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/dlwpbench"]
[project.urls]
Homepage = "https://github.com/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"