forked from jeremiecoullon/SGMCMCJax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1002 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
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import pathlib
# 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",
],
}
setup(
name='SGMCMCJax',
version='0.2.8',
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"
],
extras_require=EXTRAS,
setup_requires=['pytest-runner'],
tests_require=['pytest']
)