Coverage for s2downloader/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-18 09:49 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-18 09:49 +0000
1# -*- coding: utf-8 -*-
3# S2Downloader - The S2Downloader allows to download Sentinel-2 L2A data
4#
5# Copyright (C) 2022-2023
6# - Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences Potsdam,
7# Germany (https://www.gfz-potsdam.de/)
8#
9# Licensed only under the EUPL, Version 1.2 or - as soon they will be approved
10# by the European Commission - subsequent versions of the EUPL (the "Licence").
11# You may not use this work except in compliance with the Licence.
12#
13# You may obtain a copy of the Licence at:
14# https://joinup.ec.europa.eu/software/page/eupl
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
22"""Top-level package for S2Downloader."""
24__author__ = """FernLab"""
25__email__ = 'fernlab@gfz-potsdam.de'
27from .version import __version__
29__all__ = [
30 '__version__'
31 ]