-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
86 lines (76 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "granite-geospatial-land-surface-temperature"
version = "0.99.0"
description = "Granite Geospatial Land Surface Temperature Models"
license = { "text" = "Apache License, Version 2.0" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["land surface temperature", "LST", "fine-tuning", "geospatial foundation models", "surface urban heat", "urban heat islands", "earth observation foundation models", "uhi", "suhi"]
authors = [
{ name = "Muaaz Bhamjee", email = "[email protected]"},
{ name = "Tamara Rosemary Govindasamy", email = "[email protected]" }
]
dependencies = [
"torch==2.1.0",
"torchvision==0.16.0",
"terratorch==0.99.2",
"lightning-utilities==0.11.3.post",
"albumentations==1.4.3",
"huggingface_hub",
"jupyter",
"matplotlib",
"folium",
"pandas",
"cdsapi",
"fiona",
"netCDF4",
"pandas",
"pyproj",
"pystac",
"pystac_client",
"rasterio",
"rioxarray",
"shapely",
"scikit-learn",
"xarray",
"Ipython",
"Path",
"holoviews",
"torchgeo==0.6.0",
"albucore<=0.0.16",
"torchmetrics==1.3.1",
"geopandas>=0.14.2",
"lightly>=1.4.25",
"h5py>=3.10.0",
"mlflow==2.14.3",
# broken due to https://github.com/Lightning-AI/pytorch-lightning/issues/19977
"lightning[pytorch-extra]>=2,!=2.3.*",
]
[tool.setuptools]
packages = ["utils", "notebooks"]
[project.urls]
#Update this
Documentation = "https://github.com/ibm-granite/granite-geospatial-land-surface-temperature#readme"
Issues = "https://github.com/ibm-granite/granite-geospatial-land-surface-temperature/issues"
Source = "https://github.com/ibm-granite/granite-geospatial-land-surface-temperature"
# Huggingface Hub = ""
[tool.ruff]
# Never enforce `E501` (line length violations).
ignore = ["C901", "E501", "E741", "F402", "F823" ]
select = ["C", "E", "F", "I", "W"]
line-length = 119
# Ignore import violations in all `__init__.py` files.
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]
[tool.ruff.isort]
lines-after-imports = 2
known-first-party = ["tsfm_public"]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"