-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (50 loc) · 1.16 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
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "neural_transport"
authors = [
{name = "Vitus Benson", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
description = "Neural Transport - A Python library to train neural network emulators of atmospheric transport models."
keywords = ["AI", "neural network", "transport model", "carbon", "co2", "emulator", "pytorch"]
requires-python = ">=3.10"
version = "0.0.2"
dependencies = [
"numpy",
"xarray",
"dask",
"ecmwf-api-client",
"tqdm",
"xesmf",
"cdo",
"numcodecs",
"zarr",
"pandas",
"xskillscore",
"tensorboard",
"torch",
"cartopy",
"matplotlib",
"seaborn",
"xrft",
"xmovie",
"torch_geometric",
"scipy",
"trimesh",
"tensorly",
"torch_harmonics",
"timm",
"einops",
"pyarrow",
"h5netcdf",
"netcdf4",
]
[project.urls]
Repository = "https://github.com/vitusbenson/neural_transport.git"
Issues = "https://github.com/vitusbenson/neural_transport/issues"
[tool.setuptools.packages.find]
include = ["neural_transport"]
exclude = ["experiments*"]