forked from emit-sds/emit-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 686 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 686 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
"""
Core utility package to support EMIT data processing.
Author: Philip G. Brodrick, philip.brodrick@jpl.nasa.gov
"""
from setuptools import setup, find_packages
setup(name='emit_utils',
packages=find_packages(),
include_package_data=True,
version='1.3.0',
install_requires=[
'gdal>=2.0',
'spectral>=0.21',
'numpy>=1.19.2',
'netcdf4>=1.5.8',
'argparse>=1.0'
],
python_requires='>=3',
platforms='any',
classifiers=['Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent'])