-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (68 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
72 lines (68 loc) · 1.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "aether"
version = '1.0'
requires-python = ">=3.12"
dependencies = [
"lightning>=2.6.0",
"torch>=2.9.1",
"hydra-core==1.3.2",
"hydra-colorlog==1.2.0",
"hydra-optuna-sweeper==1.2.0",
"torchvision>=0.26.0",
"torchaudio>=2.11.0",
"rootutils>=1.0.7",
"pandas>=2.3.3",
"scikit-learn>=1.8.0",
"geoclip>=1.2.0",
"wandb>=0.23.1",
"rasterio>=1.4.3",
"pytest>=9.0.2",
"geopandas>=1.1.3",
"xarray>=2025.12.0",
"rioxarray>=0.20.0",
"utm>=0.8.1",
"geopy>=2.4.1",
"tqdm>=4.67.1",
"sh>=2.2.2",
"pytest-cov>=7.0.0",
"pre-commit>=4.5.1",
"pooch>=1.9.0",
"torchinfo>=1.8.0",
"transformers==4.57",
"gdown>=5.2.1",
"peft>=0.18.1",
"llm2vec",
"setuptools<81",
"geotessera>=0.7.3",
]
[project.optional-dependencies]
create-data = [
"geemap>=0.36.6",
"pipreqs>=0.5.0",
]
[tool.pytest.ini_options]
addopts = [
"--color=yes",
"--durations=0",
"--strict-markers",
"--doctest-modules",
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::UserWarning",
]
log_cli = "True"
markers = [
"slow: slow tests",
]
minversion = "6.0"
testpaths = "tests/"
[tool.coverage.report]
exclude_lines = [
"pragma: nocover",
"raise NotImplementedError",
"raise NotImplementedError()",
"if __name__ == .__main__.:",
]
[tool.uv.sources]
llm2vec = { git = "https://github.com/gabrieletijunaityte/llm2vec.git", rev = "445a831479748460eddc1e537ab31031cfd1a1e1" }