-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (86 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
95 lines (86 loc) · 2.42 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "isistools"
dynamic = ["version"]
description = "Python-based review tools for ISIS3 coregistration workflows"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Michael Aye" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"geopandas>=0.14",
"holoviews>=1.18",
"hvplot>=0.9",
"datashader>=0.16",
"panel>=1.3",
"bokeh>=3.3",
"rioxarray>=0.15",
"xarray>=2024.1",
"plio>=1.5",
"pvl>=1.3",
"shapely>=2.0",
"numpy>=1.24",
"pandas>=2.0",
"typer>=0.9",
"matplotlib>=3.7",
"mplcursors>=0.5",
"kalasiris>=1.11",
"PyQt6>=6.5",
"diskcache>=5.6",
]
[project.urls]
Homepage = "https://github.com/michaelaye/isistools"
Repository = "https://github.com/michaelaye/isistools"
Changelog = "https://github.com/michaelaye/isistools/blob/main/CHANGELOG.md"
Issues = "https://github.com/michaelaye/isistools/issues"
[project.optional-dependencies]
## CSM deps (csm2map) — install via conda, not pip:
## conda install -c conda-forge usgscsm ale rasterio rich
csm = [
"scipy>=1.10",
"pyproj>=3.4",
"rich>=12.0",
]
dev = [
"pytest",
"pytest-cov",
"ruff",
]
[project.scripts]
isistools = "isistools.cli:app"
csm2map = "isistools.csm2map.cli:app"
ctxpipe = "isistools.ctxpipe.cli:app"
[tool.hatch.version]
path = "src/isistools/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/isistools"]
[tool.ruff]
line-length = 99
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (requires external test data; deselect with -m 'not slow')",
]
filterwarnings = [
# pvl.collections.Units deprecation — fixed in next pvl release, remove when pvl > 1.3.2
"ignore:The pvl.collections.Units object is deprecated:PendingDeprecationWarning",
]