-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 862 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
from setuptools import setup
from setuptools import find_packages
setup(name='elefas',
version='0.1.10',
description='Friendly hyperparameter optimization ',
author='Maciej Mikulski',
author_email='[email protected]',
url='https://github.com/mjmikulski/elefas',
license='MIT',
install_requires=['numpy>=1.9.1'],
python_requires='~=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='hyperparameter gridsearch randomsearch optimization',
packages=find_packages())