-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 848 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 848 Bytes
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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "geoadapter"
version = "0.1.0"
description = "Modality-aware PEFT for geospatial foundation models"
requires-python = ">=3.10"
dependencies = [
"torch>=2.0",
"torchvision",
"timm>=0.9",
"rasterio>=1.3",
"numpy",
"pyyaml",
"scikit-learn",
]
[project.optional-dependencies]
bench = ["torchgeo>=0.5", "matplotlib", "seaborn", "umap-learn"]
geovlm = [
"transformers>=4.46,<5",
"sentencepiece>=0.2",
"safetensors>=0.4",
"huggingface-hub>=0.26",
]
dev = ["pytest>=7.0", "pytest-cov"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"realdata: tests that require locally cached public datasets and optional dataset libraries",
]
[tool.setuptools.packages.find]
include = ["geoadapter*"]