-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.37 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
30
31
32
33
34
35
36
37
# Module: RecFeatureSelect
# Author: Daniel Ryan Furman <dryanfurman@gmail.com>
# License: MIT
# Last modified : 3.10.2021
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="RecFeatureSelect",
version="1.3",
author="Daniel Ryan Furman",
author_email="dryanfurman@gmail.com",
description=("Feature selection functions (1) using Forward Stepwise Selection running on a hyper-param optimized ensemble sklearner (2) using the multi-collinearity matrix and recursively proceeding to a spearman threshold."),
long_description="See documentation at https://github.com/daniel-furman/RecFeatureSelect",
license="MIT",
keywords="feature-selection, multicollinearity",
url="https://github.com/daniel-furman/RecursiveFeatureSelection",
package_dir={"": "src"},
packages=["RecFeatureSelect"],
include_package_data=True,
install_requires=["numpy", "pandas", "scipy"],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
],
)