-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.61 KB
/
pyproject.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "bayesbeat"
authors = [
{name = "Michael J. Williams", email = "[email protected]"},
{name = "Simon C. Tait", email = "[email protected]"},
{name = "Joseph Bayley", email = "[email protected]"},
{name = "Bryan Barr", email = "[email protected]"},
]
description = "Bayesian inference for two decaying beating signals"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"click",
"hdf5storage",
"nessai>=0.8",
"corner",
"dill",
"sympy",
"h5py",
"seaborn",
"scipy",
"click",
]
dynamic = ["version"]
[project.optional-dependencies]
numba = [
"numba",
]
condor = [
"pycondor",
]
slurm = [
"simple-slurm",
]
dev = [
"pytest",
"numba",
]
[project.scripts]
bayesbeat_run = "bayesbeat.cli.run:run"
bayesbeat_build = "bayesbeat.cli.build:build"
bayesbeat_base_config = "bayesbeat.cli.config:base_config"
bayesbeat_create_ini = "bayesbeat.cli.config:create_ini"
bayesbeat_generate_injections = "bayesbeat.cli.generate:generate_injections"
bayesbeat_plot_data = "bayesbeat.cli.plot:plot_data"
bayesbeat_plot_posterior = "bayesbeat.cli.plot:plot_posterior"
bayesbeat_plot_fit = "bayesbeat.cli.plot:plot_fit"
[project.entry-points."nessai.reparameterisations"]
bayesbeat_log_amplitude_reparameterisation = "bayesbeat.reparameterisations:log_amplitude_reparameterisation"
[tool.setuptools_scm]
[tool.black]
line-length = 79