1 Star 0 Fork 0

XianxueYu/cclust_package

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.99 KB
一键复制 编辑 原始数据 按行查看 历史
smorbieu 提交于 2017-02-22 17:41 . update version
from setuptools import setup
from setuptools.command.build_ext import build_ext as _build_ext
class build_ext(_build_ext):
'to install numpy'
def finalize_options(self):
_build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
def readme():
with open('README.rst') as f:
return f.read()
setup(name='coclust',
version='0.2.1',
description='coclustering algorithms for data mining',
long_description=readme(),
classifiers=['Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
url='',
author='Francois Role, Stanislas Morbieu, Mohamed Nadif',
author_email='[email protected]',
license='BSD3',
packages=['coclust',
'coclust/clustering',
'coclust/coclustering',
'coclust/evaluation',
'coclust/io',
'coclust/visualization'
],
setup_requires=["numpy"],
install_requires=[
'numpy', 'scipy', 'scikit-learn'
],
extras_require={
'alldeps': (
'numpy',
'scipy',
'scikit-learn',
'matplotlib>=1.5'
)
},
cmdclass={
'build_ext': build_ext
},
entry_points={
'console_scripts': [
'coclust = coclust.coclust:main_coclust',
'coclust-nb = coclust.coclust:main_coclust_nb',
],
},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xianxueyu/cclust_package.git
[email protected]:xianxueyu/cclust_package.git
xianxueyu
cclust_package
cclust_package
master

搜索帮助