-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(name='wrapper-feature-selection',
version='0.1',
description='scikit-learn compatible interface to a number of wrapper-type feature selection algorithms',
url='https://github.com/jernejvivod/wrapper-feature-selection',
author='Jernej Vivod',
author_email='[email protected]',
license='MIT',
packages=['wrapper_feature_selection'],
install_requires=[
'numpy',
'sklearn',
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities'
],
keywords=['data mining', 'feature selection', 'feature evaluation', 'machine learning', 'data analysis', 'artificial intelligence', 'data science'],
include_package_data=True,
zip_safe=False)