Refactor GF3 L1A to L2 pipeline

This commit is contained in:
2026-05-03 15:41:08 +08:00
commit 46474274c2
26 changed files with 1310 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gf3-l1a2l2-pipeline"
version = "0.1.0"
description = "GF3 L1A to L2 processing pipeline"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.22",
"rasterio>=1.3",
"tqdm>=4.64",
]
[project.scripts]
gf3-l1a2l2 = "gf3_l1a2l2.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]