25 lines
476 B
TOML
25 lines
476 B
TOML
[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"]
|