-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
55 lines (52 loc) · 1.31 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
[project]
name = "sbiax"
version = "0.0.55"
description = "Fast, parallel and lightweight simulation-based inference in JAX."
readme = "README.md"
requires-python =">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Jed Homer", email = "[email protected]"},
]
keywords = [
"simulation-based-inference",
"likelihood-free-inference",
"jax",
"machine-learning",
"deep-learning",
"bayesian-inference",
"generative-models",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
urls = {repository = "https://github.com/homerjed/sbiax"}
dependencies = [
'jax==0.4.33',
'equinox==0.11.8',
'diffrax==0.6.0',
'optax==0.2.3',
'beartype==0.19.0',
'ml_collections==0.1.1',
'blackjax==1.2.4',
'numpy==1.26.4',
'matplotlib==3.9.2',
'einops==0.8.0',
'cloudpickle==3.1.0',
'tqdm==4.66.5',
'chainconsumer==1.1.2',
'tensorflow_probability==0.24.0',
'flowjax==16.0.0',
'optuna==4.0.0',
'plotly==5.24.1'
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["*"]