Metadata-Version: 2.4
Name: pymultinest-bilby
Version: 0.1.0
Summary: Plugin for using pymultinest with bilby.
Author: Bilby Developers
Maintainer-email: Colm Talbot <colm.talbot@ligo.org>, "Michael J. Williams" <michael.williams@ligo.org>
License: MIT
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bilby>=2.3.0
Requires-Dist: pymultinest
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: license-file

# pymultinest-bilby

Plugin for using pymultinest with bilby.

This plugin exposes the `pymultinest` sampler via the `bilby.samplers` entry point.
Once installed, you can select it in `bilby.run_sampler` using `sampler='pymultinest'`.

## Installation

### Using pip

The package can be installed using pip

```
pip install pymultinest-bilby
```

However, this does not install `multinest`, which must be installed separately
either following the instructions [here](https://johannesbuchner.github.io/PyMultiNest/install.html#prerequisites-for-building-the-libraries) or from conda-forge:

```
conda install conda-forge:multinest
```

### Using conda

Since `multinest` is available via conda-forge, the package can be installed
directly:

```
conda install conda-forge:pymultinest-bilby
```
