-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 988 Bytes
/
setup.py
File metadata and controls
38 lines (32 loc) · 988 Bytes
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 distutils.util import convert_path
from typing import Dict
from setuptools import setup, find_packages
def readme() -> str:
with open('README.md') as f:
return f.read()
version_dict = {} # type: Dict[str, str]
with open(convert_path('boa/version.py')) as file:
exec(file.read(), version_dict)
setup(
name='boa',
version=version_dict['__version__'],
description='Multi-Objective Bayesian Optimization Program for the gem5-Aladdin SoC Simulator',
long_description=readme(),
classifiers=['Programming Language :: Python :: 3.6'],
author='Machine Learning Group Cambridge',
author_email='gncs2@cam.ac.uk, gf332@cam.ac.uk',
python_requires='>=3.6',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'pandas',
'matplotlib',
'scikit-learn',
'tensorflow',
'tensorflow-probability',
'tqdm',
'stheno',
],
zip_safe=False,
)