-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.63 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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "hypermix"
version = "0.5.0"
description = "Open detection of engineered biosignatures in remote hyperspectral imagery"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "João Victor" }]
keywords = ["hyperspectral", "remote sensing", "biosensing", "target detection", "unmixing"]
dependencies = ["numpy>=1.24", "scipy>=1.10"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
]
[project.optional-dependencies]
viz = ["matplotlib>=3.6"]
hsi = ["spectral>=0.23"]
train = ["torch>=2.0"] # Milestone 2 detector; use Python 3.11/3.12 (torch has no 3.14 wheels yet)
reproduce = ["scikit-learn>=1.4"]
dev = ["pytest>=7", "matplotlib>=3.6", "spectral>=0.23"]
[project.urls]
Homepage = "https://experiment.com/projects/cldzyecslnphmynjenmv"
Repository = "https://github.com/JVLegend/HyperMix"
Issues = "https://github.com/JVLegend/HyperMix/issues"
Observatory = "https://hypermix-observatory.vercel.app"
[tool.setuptools]
packages = ["hypermix", "hypermix.data"]
[tool.setuptools.package-data]
"hypermix.data" = ["*.csv", "*.json", "*.md"]