-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
42 lines (39 loc) · 1.09 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
"""HyperBO.
See more details in the
[`README.md`](https://github.com/google-research/hyperbo).
"""
from setuptools import find_packages
from setuptools import setup
setup(
name='hyperbo',
version='0.0.1',
description='hyperbo',
author='HyperBO Team',
author_email='[email protected]',
url='http://github.com/google-research/hyperbo',
license='Apache 2.0',
packages=find_packages(),
install_requires=[
'absl-py>=0.8.1',
'clu',
'flax',
'jax',
'ml_collections',
'numpy>=1.7',
'optax',
'pandas',
'jaxopt',
'tensorflow_probability',
'tensorflow>=2.5.0',
],
extras_require={},
classifiers=[
# https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='bayesian optimization pre-training',
)