-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
42 lines (37 loc) · 1.03 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
40
41
42
import pathlib
from setuptools import find_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
EXTRAS = {
"tests": [
"pytest",
],
"docs": [
"furo==2020.12.30b24",
"nbsphinx==0.8.1",
"nb-black==1.0.7",
"matplotlib==3.3.3",
"sphinx-copybutton==0.3.5",
"Sphinx==4.4.0",
"isort==5.10.1",
"sphinx-rtd-theme==1.0.0",
],
}
setup(
name="SGMCMCJax",
version="0.2.13",
author="Jeremie Coullon",
author_email="[email protected]",
packages=find_packages(".", exclude=["tests"]),
license="LICENSE.txt",
description="SGMCMC samplers in JAX",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/jeremiecoullon/SGMCMCJax",
install_requires=["jax", "jaxlib", "tqdm", "optax"],
extras_require=EXTRAS,
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)