release 0.0.2

This commit is contained in:
Wolf Vollprecht 2019-03-25 16:52:22 +01:00
parent 913ae26568
commit 073007ba60
2 changed files with 8 additions and 2 deletions

View File

@ -1,2 +1,2 @@
version_info = (0, 0, 1)
version_info = (0, 0, 2)
__version__ = '.'.join(map(str, version_info))

View File

@ -3,7 +3,13 @@ from setuptools.command.build_ext import build_ext
import sys, os, platform
import setuptools
__version__ = '0.0.1'
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, 'mamba', '_version.py')) as f:
exec(f.read(), {}, version_ns)
__version__ = version_ns['__version__']
class get_pybind_include(object):
"""Helper class to determine the pybind11 include path