加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 874 Bytes
一键复制 编辑 原始数据 按行查看 历史
jundongl 提交于 2016-03-09 13:43 . update
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 = "jundong.li@asu.edu, kcheng18@asu.edu, suhang.wang@asu.edu"
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',] ,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化