forked from scikit-learn-contrib/boruta_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (18 loc) · 787 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='Boruta',
version='0.1.5',
description='Python Implementation of Boruta Feature Selection',
url='https://github.com/danielhomola/boruta_py',
download_url='https://github.com/danielhomola/boruta_py/tarball/0.1.5',
author='Daniel Homola',
author_email='[email protected]',
license='BSD 3 clause',
packages=['boruta'],
package_dir={'boruta': 'boruta'},
package_data={'boruta/examples/*csv': ['boruta/examples/*.csv']},
include_package_data = True,
keywords=['feature selection', 'machine learning', 'random forest'],
install_requires=['numpy>=1.10.4',
'scikit-learn>=0.17.1',
'scipy>=0.17.0'
])