forked from probml/dynamax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (54 loc) · 1.1 KB
/
setup.cfg
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
[metadata]
url = https://github.com/probml/dynamax
author = Peter Chang, Giles Harper-Donnelly, Aleyna Kara, Xinglong Li, Scott Linderman, Kevin Murphy
description = Dynamic State Space Models in JAX.
long_description = file:README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Programming Language :: Python
[versioneer]
VCS = git
style = pep440
versionfile_source = dynamax/_version.py
versionfile_build = dynamax/_version.py
tag_prefix =
parentdir_prefix =
[options]
python_requires = >= 3.6
install_requires =
jax>=0.3.15
jaxlib
fastprogress
optax
tensorflow_probability
scikit-learn
jaxtyping
typing-extensions
packages = find:
[options.extras_require]
notebooks =
matplotlib
seaborn
flax
blackjax
graphviz
scipy
doc =
%(notebooks)s
sphinx
sphinx-autobuild
sphinx_autodoc_typehints
sphinx-math-dollar
myst-nb
jupytext
sphinx-book-theme
test =
codecov
coverage
pytest>=3.9
pytest-cov
# A combination of dependencies required for developers
dev =
%(doc)s
%(test)s