-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (81 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dynestyx"
version = "0.0.7"
description = "NumPyro integration for dynamical systems"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12,<3.14"
authors = [
{ name = "Basis" },
]
keywords = [
"machine learning",
"statistics",
"dynamical systems",
"bayesian modeling",
"jax",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"effectful",
"cuthbert>=0.0.10",
"cuthbertlib>=0.0.10",
"cd-dynamax",
"matplotlib>=3.10.7",
"numpyro>=0.19.0",
"pytest>=9.0.1",
"arviz>=0.18.0,<1.0.0",
"blackjax>=1.3",
"pytkdocs-tweaks>=0.0.8",
"mkdocstrings[python]>=1.0.1",
"jupyter>=1.1.1",
"ipywidgets>=8.1.8",
"equinox>=0.13.2",
# NumPyro 0.20.1 currently fails to import with JAX 0.10.0
# (removed xla_pmap_p); cap until upstream compatibility lands.
"jax>=0.6.2,<0.10",
"jaxlib>=0.6.2,<0.10",
"tfp-nightly>=0.26.0dev20250530",
"orbax-checkpoint<0.11.3; sys_platform == 'win32'"
]
[tool.hatch.build.targets.wheel]
packages = ["dynestyx"]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"mike>=2.1.0",
"mkdocs-material>=9.7.1",
"mkdocs>=1.6.1",
"mypy>=1.19.1",
"pytest>=9.0.1",
"pytest-xdist>=3.8.0",
"ruff>=0.14.11",
"mkdocs-jupyter>=0.25.1,<0.26.0",
"nbconvert>=7",
"seaborn>=0.13.2",
"imageio>=2.37.2",
"nbconvert>=7"
]
[tool.ruff.lint]
select = [
"F", # pyflakes
"I", # isort
"PERF", # performance
"UP" # pyupgrade
]
[[tool.mypy.overrides]]
module = ["cd_dynamax.*", "numpyro.*", "blackjax.*", "cuthbert.*", "cuthbertlib.*", "optax.*"]
follow_untyped_imports = true