-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 938 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 938 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
27
28
29
from setuptools import setup, find_packages
import modisSuite
setup(
name='modisSuite',
version='1.0.0.20',
description='Python module to download modis data',
url='https://github.com/Gabriel-Desharnais/Modis-python-suite',
author='Gabriel Desharnais',
author_email='gabriel.desharnais@hotmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
],
keywords='modis NSIDC USGS downloader bulk',
packages=find_packages(),
install_requires=['requests','python-hdf4'],
)