-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 912 Bytes
/
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
[project]
name = "IndianPines"
version = "0.1.22"
description = "Indian Pines datasets for scikit-learn"
license = "MIT"
packages = [{include="src/IndianPines"}]
exclude = ["src/IndianPines/_data"]
include = ["example.ipynb"]
authors = [
{ name = "Kotaro SONODA", email = "[email protected]" }
]
dependencies = [
"scikit-learn>=1.5.2",
"tifffile>=2024.9.20",
"numpy>=2.1.3",
"pandas>=2.2.3",
"scipy>=1.14.1",
"requests>=2.32.3",
"tqdm>=4.67.0",
"importlib>=1.0.4",
"colormap>=1.2.0",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"jupyter>=1.1.1",
"notebook>=7.2.2",
"matplotlib>=3.9.2",
"sphinx>=8.1.3",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/IndianPines"]