-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.14 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.14 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="baco",
version="3.0.0",
description="HyperMapper is a multi-objective black-box optimization tool based on Bayesian Optimization.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Luigi Nardi",
author_email="luigi.nardi@cs.lth.se",
url="https://github.com/BaCO/BaCO",
packages=find_packages(include=["baco"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy>=1.24.4",
"setuptools>=68.0.0",
"torch>=2.0.1",
"GPy>=1.10.0",
"scipy>=1.10.1",
"scikit-learn>=1.3.0",
"matplotlib>=3.7.2",
"jsonschema>=4.19.0",
"numexpr>=2.8.5",
"networkx>=3.1",
"graphviz>=0.20.1",
"botorch>=0.8.5",
"gpytorch>=1.10",
],
python_requires=">=3.6, <=3.10",
entry_points={"console_scripts": ["baco = baco.run:main"]},
)