-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.36 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools", "wheel" ]
[project]
name = "samudra"
version = "1.0.0"
description = "Samudra: An AI Global Ocean Emulator for Climate"
readme = "README.md"
keywords = [ "climate", "emulation", "machine learning", "ocean" ]
authors = [ { name = "Surya Dheeshjith", email = "[email protected]" } ]
requires-python = ">=3.10,<3.11"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"aiohttp==3.9.3",
"cartopy==0.23",
"cftime>=1.5.2",
"cmocean==4.0.3",
"dacite==1.9.1",
"dask==2024.2.1",
"einops==0.8",
"huggingface-hub==0.23.4",
"ipykernel==6.29.3",
"ipywidgets==8.1.2",
"matplotlib==3.8.3",
"nc-time-axis==1.4.1",
"numpy==1.24.4",
"pandas==2.2.1",
"requests==2.32.3",
"scikit-learn==1.4.1.post1",
"torch==2.2.1",
"xarray==2023.7",
"xarrayutils==2.0.1",
"zarr==2.16.1",
]
[tool.ruff]
lint.select = [ "D", "E", "F", "I", "W" ]
lint.ignore = [ "D1", "D200", "D205", "D212", "E203", "E402", "F541", "W293" ]
lint.per-file-ignores."*/__init__.py" = [ "F401" ]
lint.per-file-ignores."scripts/*" = [ "D" ]
lint.isort.split-on-trailing-comma = false
lint.pydocstyle.convention = "google"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true