diff --git a/doc/source/conf.py b/doc/source/conf.py index f6b98de..80afaae 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -59,7 +59,7 @@ # The short X.Y version. version = u'0.1' # The full version, including alpha/beta/rc tags. -release = u'0.1.3' +release = u'0.1.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/graphflow/pagerank/__init__.py b/graphflow/pagerank/__init__.py index 5689ba7..a10957f 100644 --- a/graphflow/pagerank/__init__.py +++ b/graphflow/pagerank/__init__.py @@ -1,2 +1,2 @@ -from .GooglePageRank import * +from .GooglePageRank import GoogleMatrix, CalculatePageRankFromAdjacencyMatrix, CalculatePageRank diff --git a/setup.py b/setup.py index 5f46362..66a9f59 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def readme(): setup(name='graphflow', - version="0.1.3", + version="0.1.4", description="Algorithms for Graph Flow Analysis", long_description="Numerical routines for analyzing data represented by graphs", classifiers=[