Source code for bilby_pipe

"""
bilby_pipe
==========

bilby_pipe is a python3 tool for automating the process of running `bilby
<https://git.ligo.org/lscsoft/bilby>`_ for gravitational parameter
estimation on computing clusters.

"""

from . import bilbyargparser, main, parser, utils

try:
    from ._version import version as __version__
except ModuleNotFoundError:  # development mode
[docs] __version__ = "unknown"
[docs] __short_version__ = __version__
[docs] __long_version__ = __version__