-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.28 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bayesnova"
version = "0.1.0"
authors = [
{ name="Jacob Osman Hjortlund", email="[email protected]" },
]
description = "A two population hierarchical Bayesian model framework for Type Ia supernovae cosmology."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy==1.24.3", # c
"scipy==1.10.1", # c
"pandas==1.5.3", # c
"seaborn==0.12.2", # c
"matplotlib==3.7.1", # c
"corner==2.2.2", # cf
"emcee==3.1.4", # cf
"mpi4py==3.1.4", # cf
"h5py==3.7.0", # c
"numba==0.57.0", # c
"astropy==5.1", # c
"NumbaQuadPack@git+https://github.com/jacob-hjortlund/NumbaLogQuadpack.git",
"hydra-core==1.3.2", # cf
"jax==0.4.12", # cf
"jaxlib==0.4.12", # cf
"jaxtyping==0.2.20",
"diffrax==0.4.0", # cf
"equinox==0.10.6", # cf
"tqdm==4.65.0", # cf
"schwimmbad==0.3.2", # cf
"deepdiff==6.3.0" # cf
]
[project.optional-dependencies]
test = []
scripts = [
"clearml==1.11.0" # cf
]
[project.urls]
"Homepage" = "https://github.com/jacob-hjortlund/BayeSNova"