-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
59 lines (55 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='hypermax',
version='0.5.1',
description='Better, faster hyperparameter optimization by mixing the best of humans and machines.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/electricbrainio/hypermax',
author='Bradley Arsenault (Electric Brain)',
author_email='[email protected]',
license='MIT',
python_requires='>=3',
packages=find_packages(),
package_data={
'hypermax': ['test', 'atpe_models/*.txt', 'atpe_models/*.json'],
},
install_requires=[
'hyperopt',
'scikit-learn',
'numpy',
'scipy',
'jsonschema',
'pyyaml',
'urwid',
'panwid==0.2.5',
'lightgbm',
'psutil',
'matplotlib',
'colors.py',
'pymongo'
],
classifiers=[
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
platforms=['Linux', 'OS-X'],
zip_safe=False,
entry_points={
'console_scripts': [
'hypermax = hypermax.cli:main',
]
}
)