Coverage for pds_crawler/_version.py: 87%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- coding: utf-8 -*-
2# pds-crawler - ETL to index PDS data to pdssp
3# Copyright (C) 2023 - CNES (Jean-Christophe Malapert for Pôle Surfaces Planétaires)
4# This file is part of pds-crawler <https://github.com/pdssp/pds_crawler>
5# SPDX-License-Identifier: LGPL-3.0-or-later
6"""Project metadata."""
7from pkg_resources import DistributionNotFound
8from pkg_resources import get_distribution
10__name_soft__ = "pds_crawler"
11try:
12 __version__ = get_distribution(__name_soft__).version
13except DistributionNotFound:
14 __version__ = "0.0.0"
15__title__ = "pds-crawler"
16__description__ = """Crawl and extract PDS planetary data from various sources,
17including a web service and a website, transform the data into the SpatioTemporal Asset
18Catalog (STAC) format."""
19__url__ = "https://github.com/pdssp/pds_crawler"
20__author__ = "Jean-Christophe Malapert"
21__author_email__ = "jean-christophe.malapert@cnes.fr"
22__license__ = "GNU Lesser General Public License v3"
23__copyright__ = (
24 "2023, CNES (Jean-Christophe Malapert for Pôle Surfaces Planétaires)"
25)