-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 860 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
from setuptools import setup
setup(name="alabi",
version="0.0.1",
description="Active Learning Accelerated Bayesian Inference (ALABI)",
author="Jessica Birky",
author_email="[email protected]",
license = "MIT",
url="https://github.com/jbirky/alabi",
packages=["alabi"],
install_requires = ["numpy",
"matplotlib >= 2.0.0",
"scipy",
"george",
"emcee >= 3.0",
"dynesty",
"corner",
"scikit-learn",
"scikit-optimize",
"pybind11",
"pytest",
"h5py",
"tqdm",
"scikit-optimize"]
)