diff options
Diffstat (limited to 'fg21sim/__init__.py')
-rw-r--r-- | fg21sim/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fg21sim/__init__.py b/fg21sim/__init__.py index 51ab132..df1346a 100644 --- a/fg21sim/__init__.py +++ b/fg21sim/__init__.py @@ -1,24 +1,24 @@ """ -Realistic Foreground Simulation for EoR 21cm Signal Detection -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Realistic Foreground Simulation for 21 cm Reionization Signal Detection +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2016-2017 Weitian LI :license: MIT """ __pkgname__ = "fg21sim" -__version__ = "0.6.2" +__version__ = "0.6.3" __author__ = "Weitian LI" __author_email__ = "weitian@aaronly.me" __license__ = "MIT" __copyright__ = "Copyright (c) 2016-2017 Weitian LI" __url__ = "https://github.com/liweitianux/fg21sim" __description__ = ("Realistic Foreground Simulation for " - "EoR 21cm Signal Detection") + "21 cm Reionization Signal Detection") import logging -# Set default logging handle to avoid "No handler found" warnings. +# Set a default logging handler to avoid the "No handler found" warning logging.getLogger(__name__).addHandler(logging.NullHandler()) |