-
Notifications
You must be signed in to change notification settings - Fork 50
/
pyproject.toml
71 lines (68 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "climate_learn"
version = "1.0.0"
authors = [
{ name = "MINT at UCLA", email = "[email protected]" },
{ name = "Tung Nguyen", email = "[email protected]" },
{ name = "Jason Jewik", email = "[email protected]" },
{ name = "Hritik Bansal", email = "[email protected]" },
{ name = "Prakhar Sharma", email = "[email protected]" },
{ name = "Aditya Grover", email = "[email protected]" },
]
description = "ClimateLearn: Benchmarking Machine Learning for Weather and Climate Modeling"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"cdsapi>=0.5.1",
"dask>=2022.2.0",
"importlib-metadata==4.13.0",
"matplotlib>=3.5.3",
"netcdf4>=1.6.2",
"pytorch-lightning>=1.9.0",
"scikit-learn>=1.0.2",
"timm==0.9.2",
"tensorboard==2.11.2",
"wandb>=0.13.9",
"xarray>=0.20.2",
"rasterio>=1.3.7"
]
[project.optional-dependencies]
dev = [
"black>=23.1.0",
"flake8>=3.9.2",
"pytest>=7.2.1",
"properscoring",
"build",
"twine"
]
docs = [
"ipython>=7.34.0",
"nbsphinx>=0.8.12",
"sphinx>=5.3.0",
"sphinx_rtd_theme>=1.1.1"
]
[project.urls]
"Source" = "https://github.com/aditya-grover/climate-learn"
"Issue Tracker" = "https://github.com/aditya-grover/climate-learn/issues"
"Documentation" = "https://climatelearn.readthedocs.io/en/latest/"