-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.23 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[project]
name = "hls-vi-historical"
dynamic = ["version"]
description = "Generate HLS Vegetation Indices for Historical HLS Data"
readme = "README.md"
authors = [
{ name = "Chuck Daniels", email = "chuck@developmentseed.org" },
{ name = "Chris Holden", email = "chris@developmentseed.org" },
{ name = "Sean Harkins", email = "sean@developmentseed.org" },
]
requires-python = "~=3.12.0"
dependencies = [
"boto3>=1.37.35",
"hls-manifest@git+https://github.com/NASA-IMPACT/hls-manifest@v2.2",
"hls-vi@git+https://github.com/NASA-IMPACT/hls-vi@v1.19",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"requests>=2.32.3",
"ruff>=0.11.5",
"types-boto3[s3]>=1.37.37",
"types-requests>=2.32.0.20250328",
]
[tool.mypy]
files = "hls_vi_historical"
strict = true
[[tool.mypy.overrides]]
module = ["lxml.*", "hls_manifest.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = ["--doctest-modules"]
doctest_optionflags = ["NORMALIZE_WHITESPACE", "ELLIPSIS"]
[tool.uv]
package = true