Skip to content

Commit 64a41d2

Browse files
committed
adding data files and manifest.in
1 parent 0b83598 commit 64a41d2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

MANIFEST.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Include the license file
2+
include LICENSE
3+
4+
# Include the data files
5+
include boruta/examples/test_X.csv
6+
include boruta/examples/test_y.csv

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
from setuptools import setup
22

33
setup(name='Boruta',
4-
version='0.1.4',
4+
version='0.1.5',
55
description='Python Implementation of Boruta Feature Selection',
66
url='https://github.com/danielhomola/boruta_py',
7-
download_url='https://github.com/danielhomola/boruta_py/tarball/0.1.4',
7+
download_url='https://github.com/danielhomola/boruta_py/tarball/0.1.5',
88
author='Daniel Homola',
99
author_email='[email protected]',
1010
license='BSD 3 clause',
1111
packages=['boruta'],
12+
package_dir={'boruta': 'boruta'},
13+
package_data={'boruta/examples/*csv': ['boruta/examples/*.csv']},
14+
include_package_data = True,
1215
keywords=['feature selection', 'machine learning', 'random forest'],
1316
install_requires=['numpy>=1.10.4',
1417
'scikit-learn>=0.17.1',

0 commit comments

Comments
 (0)