forked from WillKoehrsen/feature-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 649 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name="feature_selector",
version="N/A",
description="FeatureSelector is a class for removing features for a dataset intended for machine learning",
url="https://github.com/WillKoehrsen/feature_selector",
author="Will Koehrsen",
author_email="wjk@case.edu",
license="N/A",
packages=["feature_selector"],
install_requires=[
"lightgbm>=2.1.1",
"matplotlib>=2.1.2",
"seaborn>=0.8.1",
"numpy>=1.14.5",
"pandas>=0.23.1",
"scikit-learn>=0.19.1"
],
zip_safe=False)