-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
81 lines (72 loc) · 2.18 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "asf_tools"
requires-python = ">=3.10"
authors = [
{name="ASF APD/Tools Team", email="[email protected]"},
]
description = "Tools developed by ASF for working with SAR data"
readme = "src/asf_tools/README.md"
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.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"astropy",
"fiona",
"gdal>=3.3",
"geopandas",
"numpy",
# "osmium-tool", # C++ CLI tool available via conda-forge or 'https://osmcode.org/osmium-tool/', used by `asf_tools.watermasking.generate_osm_tiles`.
"pyogrio",
"pysheds>=0.3",
"rasterio",
"scikit-fuzzy",
"scikit-image",
"scipy",
"shapely"
]
dynamic = ["version"]
[project.scripts]
make_composite = "asf_tools.composite:main"
water_map = "asf_tools.hydrosar.water_map:main"
calculate_hand = "asf_tools.hydrosar.hand.calculate:main"
flood_map = "asf_tools.hydrosar.flood_map:main"
generate_osm_dataset = "asf_tools.watermasking.generate_osm_tiles:main"
generate_worldcover_dataset = "asf_tools.watermasking.generate_worldcover_tiles:main"
fill_missing_tiles = "asf_tools.watermasking.fill_missing_tiles:main"
[project.entry-points.hyp3]
water_map = "asf_tools.hydrosar.water_map:hyp3"
flood_map = "asf_tools.hydrosar.flood_map:hyp3"
[project.optional-dependencies]
develop = [
"flake8",
"flake8-import-order",
"flake8-blind-except",
"flake8-builtins",
"gdal-utils",
"pytest",
"pytest-cov",
"pytest-console-scripts",
]
[project.urls]
Homepage = "https://github.com/ASFHyP3/asf-tools"
"Bug Tracker" = "https://github.com/ASFHyP3/asf-tools/issues"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
markers = [
"integration: long-running integration tests",
]