-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
148 lines (135 loc) · 3.05 KB
/
pyproject.toml
File metadata and controls
148 lines (135 loc) · 3.05 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "grdl"
version = "0.5.1"
description = "GEOINT Rapid Development Library — modular building blocks for geospatial intelligence image processing"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Steven Siebert"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.20.0",
"scipy>=1.7.0",
]
[project.optional-dependencies]
sar = [
"sarpy>=1.3.0",
"sarkit>=1.3.0",
]
s1_l0 = [
"sentinel1decoder>=0.2.0",
]
eo = [
"rasterio>=1.2.0",
"glymur>=0.9.0",
]
hdf5 = [
"h5py>=3.0.0",
]
multispectral = [
"h5py>=3.0.0",
"xarray>=2022.0.0",
"spectral>=0.23",
]
ir = [
"rasterio>=1.2.0",
"h5py>=3.0.0",
]
biomass = [
"rasterio>=1.2.0",
"requests>=2.25.0",
]
remote = [
"requests>=2.25.0",
]
geolocation = [
"pyproj>=3.4.0",
]
detection = [
"shapely>=2.0.0",
]
coregistration = [
"opencv-python-headless>=4.5.0",
]
contrast = [
"scikit-image>=0.19.0",
]
examples = [
"matplotlib>=3.5.0",
"PySide6>=6.5.0",
]
all = [
"sarpy>=1.3.0",
"sarkit>=1.3.0",
"sentinel1decoder>=0.2.0",
"rasterio>=1.2.0",
"glymur>=0.9.0",
"h5py>=3.0.0",
"xarray>=2022.0.0",
"spectral>=0.23",
"shapely>=2.0.0",
"pyproj>=3.4.0",
"opencv-python-headless>=4.5.0",
"requests>=2.25.0",
"matplotlib>=3.5.0",
"PySide6>=6.5.0",
"scikit-image>=0.19.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"pytest-benchmark>=4.0.0",
"black>=22.0.0",
"mypy>=0.950",
"ruff>=0.4.0",
]
[project.urls]
Repository = "https://github.com/geoint-org/GRDL"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["grdl*"]
[tool.setuptools.package-data]
grdl = ["**/*.md", "py.typed"]
[tool.setuptools.data-files]
"share/grdl" = ["README.md", "ARCHITECTURE.md", "LICENSE"]
"share/grdl/docs" = ["docs/logging_tutorial.md"]
[tool.pytest.ini_options]
addopts = "-p no:faulthandler"
testpaths = ["tests"]
markers = [
"benchmark: marks tests as benchmark tests (deselect with '-m \"not benchmark\"')",
]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true