-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpyproject.toml
121 lines (108 loc) · 2.2 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools >= 30.3.0", "wheel", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamax"
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [
"jax>=0.3.15",
"jaxlib",
"fastprogress",
"optax",
"tensorflow_probability",
"scikit-learn",
"jaxtyping",
"typing-extensions",
"numpy<2.0"
]
authors = [
{name="Scott Linderman"},
{name="Peter Chang"},
{name="Giles Harper-Donnelly"},
{name="Aleyna Kara"},
{name="Xinglong Li"},
{name="Kevin Murphy"}
]
maintainers = [
{name="Scott Linderman", email="[email protected]"}
]
description = "Dynamic State Space Models in JAX."
readme = "README.md"
license = {file="LICENSE"}
classifiers = ["Programming Language :: Python"]
[project.urls]
homepage = "https://github.com/probml/dynamax"
documentation = "https://probml.github.io/dynamax/"
repository = "https://github.com/probml/dynamax"
[project.optional-dependencies]
notebooks = [
"matplotlib",
"seaborn",
"flax",
"blackjax",
"graphviz",
"scipy"
]
doc = [
"matplotlib",
"seaborn",
"flax",
"blackjax",
"graphviz",
"scipy",
"sphinx",
"sphinx-autobuild",
"sphinx_autodoc_typehints",
"sphinx-math-dollar",
"myst-nb",
"jupytext",
"sphinx-book-theme"
]
test = [
"codecov",
"coverage",
"pytest>=3.9",
"pytest-cov",
"interrogate>=1.5.0"
]
dev = [
"matplotlib",
"seaborn",
"flax",
"blackjax",
"graphviz",
"scipy",
"sphinx",
"sphinx-autobuild",
"sphinx_autodoc_typehints",
"sphinx-math-dollar",
"myst-nb",
"jupytext",
"sphinx-book-theme",
"codecov",
"coverage",
"pytest>=3.9",
"pytest-cov",
"interrogate>=1.5.0"
]
[tool.setuptools.packages.find]
exclude = ["logo", "docs"]
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "dynamax/_version.py"
versionfile_build = "dynamax/_version.py"
tag_prefix = ""
parentdir_prefix = ""
[tool.black]
line-length = 120
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
fail-under = 66
verbose = 2
quiet = false
color = true
[tool.ruff.lint]
ignore = ["F722"]