-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.27 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (75 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geoanomaly-mapper"
version = "0.1.0"
description = "Ground-deformation intelligence from free satellite InSAR (NASA OPERA/HyP3), plus a reader for the open CORONA declassified-imagery archive."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "GeoAnomalyMapper maintainers" }
]
keywords = [
"insar",
"sar",
"subsidence",
"sinkhole",
"remote-sensing",
"geophysics",
"corona-satellite",
"archaeology",
"blind-validation",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"numpy>=1.24.0",
"scipy>=1.10.0",
"rasterio>=1.3.0",
"pyproj>=3.5.0",
"xarray>=2024.1.0",
"h5netcdf>=1.3.0",
"earthaccess>=0.9.0",
"asf_search>=6.0.0",
"hyp3_sdk>=6.0.0",
"matplotlib>=3.7.0",
"requests>=2.28.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.scripts]
geoanomaly = "geoanomaly:main"
geoanomaly-validation = "blind_validation:main"
blind-validation = "blind_validation:main"
[project.urls]
Homepage = "https://github.com/Bender1011001/GeoAnomalyMapper"
Documentation = "https://github.com/Bender1011001/GeoAnomalyMapper/tree/main/docs"
Issues = "https://github.com/Bender1011001/GeoAnomalyMapper/issues"
[tool.setuptools]
include-package-data = false
py-modules = [
"blind_validation",
"geoanomaly",
"json_utils",
"project_paths",
"slc_data_fetcher",
]
packages = ["deformation_intel", "archaeo_intel"]
[tool.setuptools.exclude-package-data]
"*" = [".env", ".env.*", "data/*", "results_extracted/*", "downloads/*", "outputs/*", "results/*"]
[tool.ruff]
# audit_handoff is a frozen audit snapshot; results_extracted is downloaded output.
extend-exclude = ["audit_handoff", "results_extracted"]
[tool.ruff.lint.per-file-ignores]
# Prototype drivers bootstrap sys.path/env before importing project modules.
"tools/insar_prototype/*.py" = ["E402", "F401", "E741", "E702"]