-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
63 lines (52 loc) · 1.64 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
[build-system]
requires = [ "setuptools" ]
build-backend = 'setuptools.build_meta'
[project]
name = "granite-canopyheight"
version = "0.99.0"
description = "Canopy Height Models"
license = { "text" = "Apache License, Version 2.0" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["fine-tuning", "geospatial foundation models", "canopy height"]
authors = [
{ name = "Julian Kuehnert", email = "[email protected]"},
]
dependencies = [
"lightning-utilities==0.11.3.post",
"terratorch==0.99.1",
"albumentations==1.4.3",
"torch>=2.1.0",
"torchvision>=0.16.0",
"terratorch",
"huggingface_hub",
"jupyter",
"matplotlib"
]
[tool.setuptools]
packages = ["utils"]
[project.urls]
Documentation = "https://github.com/ibm-granite/granite-geospatial-canopyheight#readme"
Issues = "https://github.com/ibm-granite/granite-geospatial-canopyheight/issues"
Source = "https://github.com/ibm-granite/granite-geospatial-canopyheight"
# 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"