-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.06 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
[tool.poetry]
name = "esri2020-landcover-torchgeo"
version = "0.1.0"
description = "A project to practice and learn TorchGeo"
authors = ["96francesco <[email protected]>"]
packages = [
{ include = "esri2020_landcover_torchgeo", from = "src" }
]
license = "GPL 3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.5.1"
rasterio = "^1.4.3"
torchvision = "^0.20.1"
torchmetrics = "^1.6.1"
numpy = "^2.2.1"
matplotlib = "^3.10.0"
torchgeo = "^0.6.2"
planetary-computer = "^1.0.0"
pystac = "^1.11.0"
pystac-client = "^0.8.5"
ruff = "^0.8.6"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# automatic fix when possible
fix = true
# define the default indent width
indent-width = 6
# define the default line length
line-length = 100
# define the default python version
target-version = "py312"
[tool.ruff.lint.per-file-ignores]
# exceptions for docstrings in tests
"tests/*.py" = ["D100", "D103"]