Select Git revision
functionexpander.hpp
__init__.py 656 B
# The Python wrapper generated using pybind11 is a compiled dynamic library,
# with a name like _arbor.cpython-38-x86_64-linux-gnu.so
#
# The library will be installed in the same path as this file, which will imports
# the compiled part of the wrapper from the _arbor namespace.
from ._arbor import *
# Parse VERSION file for the Arbor version string.
def get_version():
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION')) as version_file:
return version_file.read().strip()
__version__ = get_version()
__config__ = config()
# Remove get_version from arbor module.
del get_version