Skip to content

Commit

Permalink
fix some examples, use readme as long description
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Saul committed Apr 13, 2018
1 parent 9915ecb commit 35ce5b4
Show file tree
Hide file tree
Showing 4 changed files with 597 additions and 105 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
recursive-include kmapper/templates *
recursive-include kmapper/static *
include README.md
686 changes: 590 additions & 96 deletions examples/breast-cancer/breast-cancer.html

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions examples/breast-cancer/breast-cancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,4 @@
mapper.visualize(graph,
path_html="breast-cancer.html",
title="Wisconsin Breast Cancer Dataset",
custom_tooltips=y,
color_function="average_signal_cluster")
custom_tooltips=y)
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@

from setuptools import setup

with open('README.md') as f:
long_description = f.read()

setup(name='kmapper',
version='1.1.3',
description='Python implementation of Mapper algorithm for Topological Data Analysis.',
long_description="""
This is a Python implementation of the TDA Mapper algorithm for visualization of high-dimensional data. For complete documentation, see https://MLWave.github.io/kepler-mapper.
KeplerMapper employs approaches based on the Mapper algorithm (Singh et al.) as first described in the paper "Topological Methods for the Analysis of High Dimensional Data Sets and 3D Object Recognition".
KeplerMapper can make use of Scikit-Learn API compatible cluster and scaling algorithms.
""",
long_description=long_description,
long_description_content_type="text/markdown",
author='HJ van Veen, Nathaniel Saul',
author_email='info@mlwave.com, nat@saulgill.com',
url='https://MLWave.github.io/kepler-mapper',
Expand Down

0 comments on commit 35ce5b4

Please sign in to comment.