Skip to content

Commit 4f17e2d

Browse files
committed
Merge pull request scikit-learn-contrib#6 from lminer/patch-1
Update setup.py to include required dependencies
2 parents 359d6a3 + b7c0a5e commit 4f17e2d

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
from setuptools import setup
22

33
setup(name='Boruta',
4-
version='0.1',
4+
version='0.1.1',
55
description='Python Implementation of Boruta Feature Selection',
66
url='https://github.com/danielhomola/boruta_py',
77
author='Daniel Homola',
88
author_email='[email protected]',
99
license='BSD 3 clause',
1010
packages=['boruta'],
11-
zip_safe=False)
12-
11+
zip_safe=False,
12+
install_requires=['bottleneck==1.0.0',
13+
'numpy==1.10.4',
14+
'pandas==0.18.0',
15+
'scikit-learn==0.17.1',
16+
'scipy==0.17.0',
17+
'statsmodels==0.6.1'
18+
])

0 commit comments

Comments
 (0)