Coverage for lisacattools/_version.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.0.5, created at 2023-01-13 12:12 +0000

1# -*- coding: utf-8 -*- 

2# Copyright (C) 2021 - James I. Thorpe, Tyson B. Littenberg, Jean-Christophe 

3# Malapert 

4# 

5# This file is part of lisacattools. 

6# 

7# lisacattools is free software: you can redistribute it and/or modify 

8# it under the terms of the GNU General Public License as published by 

9# the Free Software Foundation, either version 3 of the License, or 

10# (at your option) any later version. 

11# 

12# lisacattools 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 General Public License for more details. 

16# 

17# You should have received a copy of the GNU General Public License 

18# along with lisacattools. If not, see <https://www.gnu.org/licenses/>. 

19 

20__name__ = "lisacattools" 

21__version_info__ = ("1", "0", "0") 

22__version__ = ".".join(__version_info__) 

23__title__ = "Lisa Catalog Tools" 

24__description__ = "A small example package for using LISA catalogs" 

25__url__ = "https://github.com/tlittenberg/lisacattools" 

26__author__ = "James I. Thorpe, Tyson B. Littenberg, Jean-Christophe Malapert" 

27__author_email__ = "tyson.b.littenberg@nasa.gov" 

28__license__ = "GPLV3" 

29__copyright__ = ( 

30 "2020, James I. Thorpe, Tyson B. Littenberg, Jean-Christophe Malapert" 

31)