forked from smazzanti/mrmr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 938 Bytes
/
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
30
31
32
33
34
from setuptools import setup
from mrmr import __version__
with open("README.md", encoding="utf8") as f:
long_description = f.read()
setup(
name='mrmr_selection',
version=__version__,
description='minimum-Redundancy-Maximum-Relevance algorithm for feature selection',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/smazzanti/mrmr',
author='Samuele Mazzanti',
author_email='mazzanti.sam@gmail.com',
license='GNU General Public License v3.0',
packages=['mrmr'],
install_requires=[
'category_encoders',
'jinja2',
'tqdm',
'joblib',
'pandas>=1.0.3',
'numpy>=1.18.1',
'scikit-learn',
'scipy',
],
extras_require={
'polars': ['polars>=0.12.5'],
'pyspark': ['pyspark>=3.4.1'],
'bigquery': ['google.cloud.bigquery']
},
zip_safe=False
)