-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
62 lines (56 loc) · 1.5 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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm[toml]>=3.4.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "bilby_lisa"
authors = [
{ name = "Charlie Hoy", email = "[email protected]" },
{ name = "Laura Nuttall", email = "[email protected]" },
]
description = "Python package to extend the functionality of `bilby` to perform Bayesian inference with the LISA gravitational-wave detector"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.9"
dependencies = [
"bilby",
"bilby_pipe",
]
dynamic = ["version"]
[project.optional-dependencies]
parallel = [
"parallel_bilby"
]
docs = [
"Sphinx >=1.2.2",
"sphinx-immaterial",
"sphinx-tabs"
]
[project.entry-points."bilby.gw.detector"]
LISA = "bilby_lisa.networks:LISA"
LISA_A = "bilby_lisa.interferometer:LISAChannel"
LISA_E = "bilby_lisa.interferometer:LISAChannel"
LISA_T = "bilby_lisa.interferometer:LISAChannel"
[project.scripts]
bilby_pipe = "bilby_lisa.bilby_pipe:bilby_pipe_main"
parallel_bilby_generation = "bilby_lisa.parallel_bilby:parallel_bilby_generation_main"
[tool.setuptools]
packages = [
"bilby_lisa"
]
license-files = [
"LICENSE.md",
]
[tool.setuptools_scm]
write_to = "bilby_lisa/_version.py"