forked from scikit-tda/kepler-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix some examples, use readme as long description
- Loading branch information
Nathaniel Saul
committed
Apr 13, 2018
1 parent
9915ecb
commit 35ce5b4
Showing
4 changed files
with
597 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected], [email protected]', | ||
url='https://MLWave.github.io/kepler-mapper', | ||
|