From c7046aa4356af8e2bc95842ea78f0731fee196cb Mon Sep 17 00:00:00 2001 From: Sasha Baranov Date: Mon, 24 Aug 2015 19:23:55 +0300 Subject: [PATCH] Add setup.py for convenience --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..b96f1579b --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup, find_packages + +setup( + name='bayesian-optimization', + version='0.1.0', + url='https://github.com/fmfn/BayesianOptimization', + packages=find_packages(), + description='Bayesian Optimization package', + install_requires=[ + "numpy >= 1.9.0", + "scipy >= 0.14.0", + "scikit-learn == 0.16.1", + ], +)