-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (69 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (69 loc) · 1.93 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "spectral-util"
dynamic = ["version"]
authors = [
{name = "Philip G. Brodrick", email = "philip.g.brodrick@jpl.nasa.gov"},
]
description = "Imaging Spectrometer Utilities"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click",
"netCDF4<1.7.1",
"numpy>=1.20",
"gdal>=3.0.0",
"spectral>=0.19",
"scipy>1.0",
"pyproj",
"tqdm",
"earthaccess"
]
[project.urls]
Homepage = "http://github.com/emit-sds/SpectralUtil"
[project.optional-dependencies]
test = ["pytest>=3.5.1"]
[project.scripts]
spectral_util = "spectral_util.__main__:cli"
[tool.setuptools]
packages = ["spectral_util"]
include-package-data = true
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64"]
[tool.pixi.dependencies]
gdal = ">=3.0.0"
netcdf4 = "<1.7.1"
scikit-image = ">=0.24.0,<0.27"
matplotlib = ">=3.9.4,<4"
ipykernel = ">=6.30.1,<8"
scikit-learn = ">=1.6.1,<2"
[tool.pixi.pypi-dependencies]
spectral-util = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
test = { features = ["test"], solve-group = "default" }
py39 = { features = ["test", "py39"] }
py310 = { features = ["test", "py310"] }
py311 = { features = ["test", "py311"] }
py312 = { features = ["test", "py312"] }
[tool.pixi.tasks]
[tool.pixi.feature.py39.dependencies]
python = "3.9.*"
[tool.pixi.feature.py310.dependencies]
python = "3.10.*"
[tool.pixi.feature.py311.dependencies]
python = "3.11.*"
[tool.pixi.feature.py312.dependencies]
python = "3.12.*"