-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
70 lines (63 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="bopt",
version="0.1.0",
author="Jakub Arnold",
author_email="[email protected]",
description="Bayesian Optimization",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/darthdeus/bopt",
packages=setuptools.find_packages(),
package_data={
"": ["LICENSE"],
"bopt": ["templates/*"]
},
python_requires=">=3.6, <4",
install_requires=[
"numpy>=1.17.4",
"scipy>=1.1.0",
"pyyaml>=5.1",
"tqdm~=4.39.0",
"flask~=1.0.2",
"psutil~=5.6.3",
"jsonpickle~=1.0",
"GPy[plotting]~=1.9.9",
"filelock~=3.0.10",
"ipdb~=0.11",
"livereload==2.5.1",
"colored==1.4.2"
],
extras_require={
"plotting": [
"matplotlib~=3.2.0",
],
"dev": [
"pylint",
"coverage",
"deepdiff",
"Cython",
"pytest",
"mypy",
"radon",
]
},
entry_points={
"console_scripts": [
"bopt=bopt.cli.cli:main"
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)