Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
update
  • Loading branch information
jundongl committed Mar 9, 2016
1 parent c0f531d commit 7262dba
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
11 changes: 11 additions & 0 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Metadata-Version: 1.0
Name: skfeature
Version: 1.0.0
Summary: Feature Selection Repository in Python (DMML Lab@ASU)
Home-page: https://github.com/jundongl/scikit-feature
Author: Jundong Li, Kewei Cheng, Suhang Wang
Author-email: [email protected], [email protected], [email protected]
License: UNKNOWN
Description: UNKNOWN
Keywords: Feature Selection Repository
Platform: UNKNOWN
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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"

AUTHOR_EMAIL = "[email protected], [email protected], [email protected]"

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',] ,
)

0 comments on commit 7262dba

Please sign in to comment.