Initial project implementation

This commit is contained in:
2026-04-28 10:44:45 +08:00
commit 60527e935f
41 changed files with 7378 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
[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"