Add py-gee-asset-manager package (#12365)
This commit is contained in:
parent
889b625452
commit
6e14e74014
1 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class PyGeeAssetManager(PythonPackage):
|
||||
"""Google Earth Engine Batch Asset Manager."""
|
||||
|
||||
homepage = "https://github.com/tracek/gee_asset_manager"
|
||||
url = "https://github.com/tracek/gee_asset_manager/archive/0.1.tar.gz"
|
||||
git = "https://github.com/tracek/gee_asset_manager.git"
|
||||
|
||||
version('master', branch='master')
|
||||
version('0.1', sha256='0d3345855352354d8b84188705a09a35c21af2b753cda5c688ffb2e3a454ee23')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-earthengine-api@0.1.87:', type=('build', 'run'))
|
||||
depends_on('py-requests@2.10.0:', type=('build', 'run'))
|
||||
depends_on('py-retrying@1.3.3:', type=('build', 'run'))
|
||||
depends_on('py-beautifulsoup4@4.5.1:', type=('build', 'run'))
|
||||
depends_on('py-requests-toolbelt@0.7.0:', type=('build', 'run'))
|
||||
depends_on('py-pytest@3.0.0:', type=('build', 'test'))
|
||||
depends_on('py-future@0.16.0:', type=('build', 'run'))
|
||||
depends_on('py-google-cloud-storage@1.1.1:', type=('build', 'run'))
|
Loading…
Reference in a new issue