-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 801 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 801 Bytes
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
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',
use_scm_version={
"write_to": "src/hytools/_version.py",
},
setup_requires=["setuptools_scm"]
)