blob: 5c4dd7022012fe6e660802f2d829de5efc3952b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
"""
Realistic Foreground Simulation for 21 cm Reionization Signal Detection
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: (c) 2016-2018 Weitian LI
:license: MIT
"""
__pkgname__ = "fg21sim"
__version__ = "0.6.5"
__author__ = "Weitian LI"
__author_email__ = "weitian@aaronly.me"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2016-2018 Weitian LI"
__url__ = "https://github.com/liweitianux/fg21sim"
__description__ = ("Realistic Foreground Simulation for "
"21 cm Reionization Signal Detection")
import logging
# Set a default logging handler to avoid the "No handler found" warning
logging.getLogger(__name__).addHandler(logging.NullHandler())
|