forked from automl/HPOlib1.5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.39 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
# -*- encoding: utf-8 -*-
import setuptools
with open("hpolib/__version__.py") as fh:
version = fh.readlines()[-1].split()[-1].strip("\"'")
with open('requirements.txt') as fh:
requirements = fh.read()
requirements = requirements.split('\n')
requirements = [requirement.strip() for requirement in requirements]
setuptools.setup(
name='hpolib2',
description='Automated machine learning.',
version=version,
packages=setuptools.find_packages(exclude=['test']),
install_requires=requirements,
tests_require=[
'pynisher',
'nose',
'mock'],
test_suite='nose.collector',
scripts=[],
#include_package_data=True,
author_email='[email protected]',
license='GPLv3',
platforms=['Linux'],
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
]
)