-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
40 lines (38 loc) · 1.2 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="bayes-optim",
version="0.3.0",
author="Hao Wang",
author_email="[email protected]",
packages=find_packages(),
description="A Bayesian Optimization Library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wangronin/Bayesian-Optimization",
package_dir={"bayes_optim": "bayes_optim"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
download_url="https://github.com/wangronin/Bayesian-Optimization/archive/v0.1.3.tar.gz",
python_requires=">=3.7",
install_requires=[
"dill>=0.3.3",
"joblib>=1.0.0",
"numpy>=1.24.0",
"pyDOE>=0.3.8",
"scikit-learn>=1.2.2",
"scipy>=1.5.4",
"sklearn==0.0",
"tabulate>=0.8.7",
"threadpoolctl>=2.1.0",
"requests>=2.25.0",
"requests-oauthlib>=1.3.0",
"sobol-seq>=0.2.0",
"py-expression-eval>=0.3.13",
"torch>=2.0.1",
"pytest>=7.3.2",
],
)