-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.27 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 77.0.3"]
[project]
name = "sde"
version = "0.1.1"
description = "Utilities for inference in SDE models using Mici"
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"stochastic differential equation",
"diffusion",
"Bayesian inference",
"Monte Carlo",
"Markov chain Monte Carlo",
"MCMC"
]
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "Matt Graham"}]
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mici~=0.3",
"symnum~=0.2",
"numpy~=2.2",
"sympy~=1.8",
"jax~=0.6"
]
[project.optional-dependencies]
notebook = [
"matplotlib~=3.9",
"arviz~=0.21",
"corner~=2.2",
"jupyter~=1.1"
]
scripts = [
"matplotlib~=3.9",
"arviz~=0.21",
"pandas~=2.2",
]
[project.urls]
repository = "https://github.com/thiery-lab/manifold-mcmc-for-diffusions.git"