-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.31 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
[project]
name = "hsi-preprocessing-toolkit"
version = "0.0.0" # This will be changed by dunami according to git tag when releasing.
description = "HSI Preprocessing Toolkit"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"einops>=0.8.0",
"gradio>=5.50.0,<6.0.0",
"matplotlib>=3.10.0",
"opencv-python>=4.13.0.90",
"portpicker>=1.6.0",
"rasterio>=1.4.0",
"rs-fusion-datasets>=0.16.0",
"scipy>=1.16.0",
"webui2>=2.5.6",
]
authors = [
{ name = "songyz2023", email = "songyz2023dlut@outlook.com" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
license = "AGPL-3.0-only"
[project.urls]
Documentation = "https://github.com/songyz2019/hsi-preprocessing-toolkit#readme"
Issues = "https://github.com/songyz2019/hsi-preprocessing-toolkit/issues"
Source = "https://github.com/songyz2019/hsi-preprocessing-toolkit"
[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true
[build-system]
requires = ["uv_build >= 0.9.0, <0.10.0"]
build-backend = "uv_build"
[tool.hatch.build.targets.wheel]
packages = ["hsi-preprocessing-toolkit/__main__.py"]
[project.scripts]
hsi_preprocessing_toolkit = "hsi_preprocessing_toolkit.__main__:main"