-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 836 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 836 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "land-classification"
version = "0.1.0"
description = "Land-use classification benchmark on EuroSAT-RGB: hand-crafted features vs ResNet-18, with explainability and figure outputs."
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = { file = "LICENSE" }
authors = [{ name = "Gustavo Scholze" }]
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"scipy>=1.11",
"scikit-learn>=1.4",
"scikit-image>=0.22",
"Pillow>=10.0",
"matplotlib>=3.8",
"xgboost>=2.0",
"torch>=2.2",
"torchvision>=0.17",
"shap>=0.45",
"PyYAML>=6.0",
"certifi>=2024.2.2",
"tqdm>=4.66",
"seaborn>=0.13.2",
]
[tool.hatch.build.targets.wheel]
packages = ["src/land_classification"]
[tool.uv]
package = true