forked from Yatoom/Hyperboost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 860 Bytes
/
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
# from os import path
from setuptools import setup
import hyperboost
# Get the long description from the README file
# here = path.abspath(path.dirname(__file__))
# with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
# long_description = f.read()
with open('requirements.txt') as fh:
requirements = fh.read()
requirements = requirements.split('\n')
requirements = [requirement.strip() for requirement in requirements]
print(requirements)
setup(
name='hyperboost',
version=hyperboost.__version__,
packages=['hyperboost'],
url='https://github.com/Yatoom/hyperboost',
license='',
author='Jeroen van Hoof',
author_email='[email protected]',
description='A hyperparameter optimization tool based on SMAC and gradient boosting.',
# long_description=long_description,
install_requires=requirements
)