forked from hyperopt/hyperopt-sklearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (52 loc) · 1.69 KB
/
setup.py
File metadata and controls
55 lines (52 loc) · 1.69 KB
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
import logging
import os
try:
import setuptools
from setuptools import find_packages, setup
except ImportError:
raise ImportError(
"'setuptools' is required but not installed. To install it, "
"follow the instructions at "
"https://pip.pypa.io/en/stable/installing/#installing-with-get-pip-py")
setup(
name = "hpsklearn",
version = '0.0.3',
packages = find_packages(),
scripts = [],
url = 'http://hyperopt.github.com/hyperopt-sklearn/',
download_url = 'https://github.com/ktark/hyperopt-sklearn/dist/hpsklearn-0.0.3.tar.gz',
author = 'James Bergstra',
author_email = 'anon@anon.com',
description = 'Hyperparameter Optimization for sklearn',
long_description = open('README.md').read(),
keywords = ['hyperopt', 'hyperparameter', 'sklearn'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
platforms = ['Linux', 'OS-X', 'Windows'],
license = 'BSD',
install_requires = [
'hyperopt',
'nose',
'numpy',
'scikit-learn',
'scipy',
'catboost'
],
extras_require = {
'xgboost': ['xgboost==0.6a2'],
'lightgbm': ['lightgbm==2.3.1']
}
)