forked from george-azzari/eetc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 689 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
REQUIRED_PACKAGES = [
'earthengine-api >= 0.1.208',
'gdal >= 1.10.1',
'scipy >= 1.1.0',
'matplotlib >= 2.2.2',
'numpy >= 1.13.3',
'google-api-python-client >= 1.7.3',
'oauth2client >= 0.2.2'
]
setup(
name='gee_tools',
packages=find_packages(exclude=['*.csv', '*.ipynb', 'tests', 'examples']),
description='A collection of utility functions relating to Google Earth Engine.',
version='0.0.8',
url='https://github.com/AtlasAIPBC/gee_tools.git',
author='George Azzari',
author_email='',
keywords=['GEE', 'Earth Engine', 'Google Earth Engine'],
install_requires=REQUIRED_PACKAGES,
)