Coverage for csvforwkt/_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# csvForWKT - csvForWKT is a python script that creates a WKT-crs for some bodies from the solar system. The content that is filled in the WKT-crs comes from the report of IAU Working Group on Cartographic.
3# Copyright (C) 2022 - CNES (Jean-Christophe Malapert for Pôle Surfaces Planétaires)
4#
5# This file is part of csvForWKT.
6#
7# csvForWKT is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Lesser General Public License v3 as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# csvForWKT is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Lesser General Public License v3 for more details.
16#
17# You should have received a copy of the GNU Lesser General Public License
18# along with csvForWKT. If not, see <https://www.gnu.org/licenses/>.
19"""Project metadata."""
20from pkg_resources import DistributionNotFound
21from pkg_resources import get_distribution
23__name_soft__ = "csvforwkt"
24try:
25 __version__ = get_distribution(__name_soft__).version
26except DistributionNotFound:
27 __version__ = "0.0.0"
28__title__ = "csvForWKT"
29__description__ = "csvForWKT is a python script that creates a WKT-crs for some bodies from the solar system. The content that is filled in the WKT-crs comes from the report of IAU Working Group on Cartographic."
30__url__ = "https://github.com/pole-surfaces-planetaires/csvforwkt"
31__author__ = "Jean-Christophe Malapert"
32__author_email__ = "jean-christophe.malapert@cnes.fr"
33__license__ = "GNU Lesser General Public License v3"
34__copyright__ = (
35 "2022, CNES (Jean-Christophe Malapert for Pôle Surfaces Planétaires)"
36)