-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.46 KB
/
setup.py
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
48
49
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize
import numpy
with open("README.md", "r") as fh:
long_description = fh.read()
ext_modules = [
Extension(
'hyperquest.mlr',
sources=['hyperquest/mlr.pyx'],
include_dirs=[numpy.get_include()]
)
]
setup(
name="hyperquest",
version="0.1.13",
author="Brent Wilder",
author_email="[email protected]",
description=" A Python package for Hyperspectral quality estimation in hyperspectral imaging (imaging spectroscopy)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/brentwilder/hyperquest",
ext_modules=ext_modules,
packages=find_packages(),
install_requires=[
"numpy<2.0.0",
"pandas>=1.2.0",
"scikit-image>=0.18.0",
"scikit-learn>=0.24.0",
"joblib>=1.0.0",
"cython>=3.0.11",
"spectral>=0.23.0",
"pysolar>=0.13",
"h5netcdf>=1.1.0"
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.8"
)