Skip to content

Commit

Permalink
new version publish with utils added
Browse files Browse the repository at this point in the history
  • Loading branch information
aagm committed Mar 22, 2018
1 parent 0bc2a0b commit ad9e5b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
Expand Up @@ -9,3 +9,7 @@ sql2gee/image.py
sql2gee/image_collection.py
sql2gee/sql2gee.py
sql2gee/test.py
sql2gee/utils/__init__.py
sql2gee/utils/dateManagement.py
sql2gee/utils/jsonSql.py
sql2gee/utils/reduce.py
6 changes: 3 additions & 3 deletions setup.py
@@ -1,19 +1,19 @@
from distutils.core import setup

setup(name='sql2gee',
version='0.2.1',
version='0.2.3',
description='Library to convert SQL-like queries into Google Earth Engine syntax, and return the responses',
author='Benjamin Laken, Alicia Arenzana, Ivan Birkmingan, Adam Pain',
author_email='benjamin.laken@vizzuality.com',
keywords=['EarthEngine', 'SQL'],
license='MIT',
packages=['sql2gee'],
packages=['sql2gee','sql2gee.utils'],
package_data={'sql2gee': ['tests/*.py', ], },
test_suite='tests',
install_requires=[
'earthengine-api==0.1.136',
'google-api-python-client==1.6.5',
'cached-property==1.3.0'],
url='https://github.com/Vizzuality/sql2gee',
download_url='https://github.com/Vizzuality/sql2gee/tarball/0.2.1',
download_url='https://github.com/Vizzuality/sql2gee/tarball/0.2.3',
zip_safe=False)

0 comments on commit ad9e5b7

Please sign in to comment.