-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.08 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "credit"
authors = [{name = "NCAR Machine Integration and Learning for Earth Systems (MILES)", email = "miles@ucar.edu"}]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"numpy<2",
"pandas",
"matplotlib",
"cartopy",
"scikit-learn",
"pyarrow",
"pytest",
"xarray",
"netcdf4",
"torch",
"torchvision",
"pyyaml",
"cartopy",
"dask",
"distributed",
"dask-jobqueue",
"zarr",
"einops",
"echo-opt",
"bridgescaler",
"rotary-embedding-torch",
"segmentation-models-pytorch",
"vector-quantize-pytorch",
"haversine",
"pvlib",
"geocat-comp",
]
[tool.setuptools]
packages = ["credit", "credit.models", "credit.metadata", "credit.datasets", "credit.trainers"]
[tool.setuptools.dynamic]
version = {file = "credit/VERSION"}
[tool.ruff]
src = ["credit", "applications", "tests"]
[tool.ruff.lint.pydocstyle]
convention = "google"