aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/__init__.py
blob: b94ba8b70ab3fd975f248fc83c840922e6b437aa (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 Foregrounds Simulation for EoR 21cm Signal Detection
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:copyright: (c) 2016 Weitian LI
:license: MIT
"""

__pkgname__ = "fg21sim"
__version__ = "0.2.0"
__author__ = "Weitian LI"
__author_email__ = "liweitianux@live.com"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2016 Weitian LI"
__url__ = "https://github.com/liweitianux/fg21sim"
__description__ = ("Realistic Foregrounds Simulation for "
                   "EoR 21cm Signal Detection")


import logging


# Set default logging handle to avoid "No handler found" warnings.
logging.getLogger(__name__).addHandler(logging.NullHandler())