-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 802 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 802 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
from distutils.core import setup
install_requires = [
'earthengine-api==0.1.236',
'cached-property==1.3.0'
]
tests_require = [
'pytest==6.0.2'
]
setup(name='sql2gee',
version='0.5.1',
description='Library to convert SQL-like queries into Google Earth Engine syntax, and return the responses',
author='Vizzuality',
author_email='info@vizzuality.com',
keywords=['EarthEngine', 'SQL'],
license='MIT',
packages=['sql2gee', 'sql2gee.utils'],
package_data={'sql2gee': ['tests/*.py', ], },
test_suite='tests',
install_requires=install_requires,
tests_require=tests_require,
url='https://github.com/Vizzuality/sql2gee',
download_url='https://github.com/Vizzuality/sql2gee/tarball/0.4.0',
zip_safe=False
)