Initial commit

This commit is contained in:
2026-04-10 16:46:45 +08:00
commit 4fd1b0a203
165 changed files with 25698 additions and 0 deletions

20
Flexbrdf/setup.py Normal file
View File

@ -0,0 +1,20 @@
from setuptools import setup, find_packages
setup(
name='hy-tools',
description= 'HyTools: Hyperspectral image processing library',
version= '1.6.1',
license='GNU General Public License v3.0',
url='https://github.com/EnSpec/hytools',
author = 'Adam Chlus, Zhiwei Ye, Ting Zheng, Natalie Queally, Evan Greenberg and Philip Townsend',
packages=find_packages(),
install_requires=['h5py',
'h5netcdf',
'matplotlib',
'numpy',
'pandas',
'ray',
'scikit-learn',
'scipy'],
python_requires='>3.9'
)