diff --git a/hypertools/config.py b/hypertools/config.py index 63af8876..eacb1911 100644 --- a/hypertools/config.py +++ b/hypertools/config.py @@ -1 +1,4 @@ -__version__ = "0.6.3" +from pkg_resources import get_distribution + + +__version__ = get_distribution('hypertools') diff --git a/setup.py b/setup.py index 092eb3d6..81b50697 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ os.environ["MPLCONFIGDIR"] = "." NAME = 'hypertools' -VERSION = '0.6.3' +VERSION = '0.7.0' AUTHOR = 'Contextual Dynamics Lab' AUTHOR_EMAIL = 'contextualdynamics@gmail.com' URL = 'https://github.com/ContextLab/hypertools'