-
Notifications
You must be signed in to change notification settings - Fork 258
/
setup.py
21 lines (20 loc) · 905 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='Boruta',
version='{{VERSION_PLACEHOLDER}}',
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,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=['feature selection', 'machine learning', 'random forest'],
install_requires=['numpy>=1.10.4',
'scikit-learn>=0.17.1',
'scipy>=0.17.0'
])