-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.07 KB
/
setup.py
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
import sys
import setuptools
# READ README.md for long description on PyPi.
try:
long_description = open("README.md", encoding="utf-8").read()
except Exception as e:
sys.stderr.write(f"Failed to read README.md:\n {e}\n")
sys.stderr.flush()
long_description = ""
setuptools.setup(
name="aux-ssm-samplers",
author="Adrien Corenflos",
description="Auxiliary samplers for state-space models with tractable densities",
long_description=long_description,
version="0.1",
packages=setuptools.find_packages(),
install_requires=[
"chex>=0.1.5",
"jax>=0.3.25",
"jaxlib>=0.3.25",
"jaxopt>=0.5.5",
"jaxtyping>=0.2.8",
"matplotlib>=3.6.3",
"numba>=0.56.4",
"pandas",
"pytest",
"statsmodels>=0.13.5",
"tensorflow_probability>=0.19.0",
"tikzplotlib",
"tqdm>=4.64.1",
],
long_description_content_type="text/markdown",
keywords="probabilistic state space bayesian statistics sampling algorithms",
license="MIT",
license_files=("LICENSE",),
)