forked from ASFHyP3/hyp3-isce2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (73 loc) · 2.17 KB
/
pyproject.toml
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>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "hyp3_isce2"
requires-python = ">=3.8"
authors = [
{name="tools-bot", email="[email protected]"},
]
description = "HyP3 plugin for ISCE2 processing"
license = {text = "BSD-3-Clause"}
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"dem_stitcher>=2.4.0",
"rasterio",
"shapely",
"jinja2",
"asf_search>=6.4.0",
"gdal",
"hyp3lib>=3,<4",
# Conda-forge only dependencies are listed below
# "opencv",
# "isce2>=2.6.3",
]
dynamic = ["version", "readme"]
[project.optional-dependencies]
develop = [
"flake8",
"flake8-import-order",
"flake8-blind-except",
"flake8-builtins",
"pytest",
"pytest-cov",
"pytest-console-scripts",
]
[project.urls]
Homepage = "https://github.com/ASFHyP3/hyp3-ISCE2"
Documentation = "https://hyp3-docs.asf.alaska.edu"
[project.scripts]
insar_tops_burst = "hyp3_isce2.insar_tops_burst:main"
insar_tops_fufiters = "hyp3_isce2.insar_tops_fufiters:main"
insar_tops = "hyp3_isce2.insar_tops:main"
insar_stripmap = "hyp3_isce2.insar_stripmap:main"
merge_tops_bursts = "hyp3_isce2.merge_tops_bursts:main"
[project.entry-points.hyp3]
insar_tops_burst = "hyp3_isce2.insar_tops_burst:main"
insar_tops_fufiters = "hyp3_isce2.insar_tops_fufiters:main"
insar_tops = "hyp3_isce2.insar_tops:main"
insar_stripmap = "hyp3_isce2.insar_stripmap:main"
merge_tops_bursts = "hyp3_isce2.merge_tops_bursts:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
script_launch_mode = "subprocess"
markers = "integration"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]