-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 842 Bytes
/
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
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="bayesian_sde_solver",
author="Yvann Le Fay, Adrien Corenflos",
description="Bayesian SDE solver",
long_description=long_description,
version="0.1",
packages=setuptools.find_packages(),
install_requires=[
"jax>=0.3.25",
"jaxlib>=0.3.25",
"pytest",
"numpy>=1.24.3",
"tqdm"
],
long_description_content_type="text/markdown",
keywords="probabilistic state space bayesian statistics sampling algorithms sde",
license="MIT",
license_files=("LICENSE",),
)