forked from sharanbngr/blip
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.45 KB
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 >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "blip"
version = "2.0.3"
license = "MIT"
authors = [
{ name = "Sharan Banagiri", email = "sharan.banagiri@gmail.com" },
{ name = "Alexander Criswell" },
]
description = "A Bayesian inference package for characterizing stochastic backgrounds and foregrounds with LISA."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=2.0,<2.4",
"matplotlib",
"healpy",
"scipy>=1.15", # require sph_harm_y
"astropy",
"pandas",
"corner",
"sympy",
"legwork",
"dill",
"dynesty",
"emcee",
"numpyro",
"jax",
"chex",
"h5py",
"lisaconstants"
]
[project.urls]
Repository = "https://github.com/criswellalexander/blip"
Documentation = "https://blip.readthedocs.io/en/latest/"
[project.optional-dependencies]
gpu = ["jax[cuda12]"]
lisaorbits = ["lisaorbits>=3.0"]
[project.scripts]
run_blip = "blip.run_blip:main"
[dependency-groups]
docs = ["sphinx", "sphinx_rtd_theme", "recommonmark"]
test = ["pytest", "hypothesis"]
dev = [{ include-group = "test" }, { include-group = "docs" }]
[tool.setuptools.packages.find]
where = ["."]
include = ["blip"]