File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 44from .logger import ScreenLogger , JSONLogger
55from .constraint import ConstraintModel
66
7- __version__ = 1.3 .0
7+ __version__ = ' 1.3.0'
88
99__all__ = [
1010 "BayesianOptimization" ,
11- "ConstraintModel"
11+ "ConstraintModel" ,
1212 "UtilityFunction" ,
1313 "Events" ,
1414 "ScreenLogger" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22import bayes_opt
33
4+ with open ("README.md" , "r" ) as fh :
5+ long_description = fh .read ()
6+
47setup (
58 name = 'bayesian-optimization' ,
69 version = bayes_opt .__version__ ,
912 author = 'Fernando Nogueira' ,
10131114 description = 'Bayesian Optimization package' ,
12- long_description = 'A Python implementation of global optimization with gaussian processes.' ,
15+ long_description = "A Python implementation of global optimization with gaussian processes." ,
16+ long_description_content_type = "text/markdown" ,
1317 download_url = 'https://github.com/fmfn/BayesianOptimization/tarball/0.6' ,
1418 install_requires = [
1519 "numpy >= 1.9.0" ,
16- "scipy >= 0.14 .0" ,
20+ "scipy >= 1.6 .0" ,
1721 "scikit-learn >= 0.18.0" ,
1822 ],
1923 classifiers = [
You can’t perform that action at this time.
0 commit comments