Coverage for pymarsseason/__init__.py: 100%

16 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-09-23 10:46 +0000

1# PyMarsSeason - Computes the season based on the solar longitude 

2# Copyright (C) 2022-2025 - CNES (Jean-Christophe Malapert for PDSSP (Pôle de Données et Services Surfaces Planétaires)) 

3# This file is part of PyMarsSeason <https://github.com/pdssp/pymarsseason> 

4# SPDX-License-Identifier: Apache-2.0 

5"""Computes the season based on the solar longitude""" 

6from .config import configure_logging 

7 

8configure_logging() 

9 

10from ._version import __author__ 

11from ._version import __author_email__ 

12from ._version import __copyright__ 

13from ._version import __description__ 

14from ._version import __license__ 

15from ._version import __name_soft__ 

16from ._version import __title__ 

17from ._version import __url__ 

18from ._version import __version__ as version 

19from .pymarsseason import PyMarsSeason 

20from .pymarsseason import Season 

21from .pymarsseason import Hemisphere 

22from .pymarsseason import Time 

23 

24__all__ = ["PyMarsSeason", "version", "Hemisphere", "Season", "Time"]