forked from jundongl/scikit-feature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (18 loc) · 874 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
from distutils.core import setup
NAME = "skfeature"
DESCRIPTION = "Feature Selection Repository in Python (DMML Lab@ASU)"
KEYWORDS = "Feature Selection Repository"
AUTHOR = "Jundong Li, Kewei Cheng, Suhang Wang"
URL = "https://github.com/jundongl/scikit-feature"
VERSION = "1.0.0"
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
keywords = KEYWORDS,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
packages =['skfeature', 'skfeature.utility','skfeature.function','skfeature.function.information_theoretical_based','skfeature.function.similarity_based','skfeature.function.sparse_learning_based','skfeature.function.statistical_based','skfeature.function.streaming','skfeature.function.structure','skfeature.function.wrapper',] ,
)