-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 970 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
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dnest4-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 dnest4 with bilby."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"bilby>=2.3.0",
"dnest4",
"numpy",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.setuptools_scm]
[project.entry-points."bilby.samplers"]
dnest4 = "dnest4_bilby.plugin:DNest4"
[tool.ruff]
line-length = 79
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
extend-select = ["I"]