forked from tsutterley/read-ICESat-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 1 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='read-ICESat-2',
version='1.0.0.13',
description='Python tools for obtaining and working with elevation data from the NASA ICESat-2 mission',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/tsutterley/read-ICESat-2',
author='Tyler Sutterley',
author_email='tsutterl@uw.edu',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords='ICESat-2 laser altimetry, ATLAS',
packages=find_packages(),
install_requires=['numpy','scipy','h5py','scikit-learn','matplotlib','cartopy','future','lxml','paramiko','scp'],
)