-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ptmcmcsampler-bilby"
authors = [
{name = "Bilby Developers"},
]
maintainers = [
{name = "Colm Talbot", email = "colm.talbot@ligo.org"},
{name = "Michael J. Williams", email = "michael.williams@ligo.org"},
]
description = "Plugin for using ptmcmcsampler with bilby."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"bilby>=2.3.0",
"ptmcmcsampler!=2.1.0,!=0.0.0",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.setuptools_scm]
[project.entry-points."bilby.samplers"]
ptmcmcsampler = "ptmcmcsampler_bilby.sampler:PTMCMCSampler"