Coverage for /Users/gavin/repos/EnsemblLite/src/ensembl_lite/__init__.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-06-12 16:31 -0400

1from warnings import filterwarnings 

2 

3from ._species import Species 

4 

5 

6filterwarnings("ignore", message=".*MPI") 

7filterwarnings("ignore", message="Can't drop database.*") 

8 

9 

10__all__ = [ 

11 "name", 

12 "_species", 

13 "util", 

14 "Species", 

15] 

16 

17__author__ = "Gavin Huttley" 

18__copyright__ = "Copyright 2023-, The ensembl lite project" 

19__credits__ = ["Gavin Huttley"] 

20__license__ = "BSD" 

21__version__ = "2023.7.9a1" 

22__maintainer__ = "Gavin Huttley" 

23__email__ = "Gavin.Huttley@anu.edu.au" 

24__status__ = "alpha"