forked from luinardi/hypermapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.55 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
41
42
43
44
45
46
47
48
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="hypermapper",
version="2.2.1",
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="[email protected]",
url="https://github.com/luinardi/hypermapper",
packages=["hypermapper"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy",
"matplotlib",
"ply",
"jsonschema",
"pandas",
"scikit-learn",
"GPy",
"pyDOE",
"statsmodels",
"ipykernel",
"scipy",
"threadpoolctl",
],
extras_require={"plot_hvi": ["pygmo", "statsmodels"]},
python_requires=">=3.6",
package_data={"hypermapper": ["schema.json", "_branin_scenario.json"]},
entry_points={
"console_scripts": [
"hm-compute-pareto=hypermapper._cli:_compute_pareto_cli",
"hypermapper=hypermapper._cli:_hypermapper_cli",
"hm-plot-pareto=hypermapper._cli:_plot_pareto_cli",
"hm-plot-hvi=hypermapper._cli:_plot_hvi_cli",
"hm-quickstart=hypermapper._cli:_branin_quick_start_cli",
"hm-plot-optimization-results=hypermapper._cli:_plot_optimization_results_cli",
],
},
)