26 lines
650 B
TOML
26 lines
650 B
TOML
[project]
|
|
name = "sentinel-orbit-downloader"
|
|
version = "0.1.0"
|
|
description = "Query and download Sentinel-1 scenes and precise orbit files"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Harmon", email = "rs_bhm@163.com" }
|
|
]
|
|
requires-python = ">=3.11,<3.14"
|
|
dependencies = [
|
|
"asf-search>=12.0.7",
|
|
"fastapi>=0.116.1",
|
|
"s1-orbits>=0.2.0",
|
|
"shapely>=2.1.2",
|
|
"uvicorn>=0.35.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
sentinel-orbit-downloader = "sentinel_orbit_downloader:main"
|
|
s1-dl = "sentinel_orbit_downloader:main"
|
|
s1-web = "sentinel_orbit_downloader.api.app:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.11.8,<0.12.0"]
|
|
build-backend = "uv_build"
|