Skip to content
Snippets Groups Projects
Select Git revision
  • 67b178cb8e1ea9c85889d7726806ef3192a8bf1a
  • master default protected
  • tut_ring_allen
  • docs_furo
  • docs_reorder_cable_cell
  • docs_graphviz
  • docs_rtd_dev
  • ebrains_mirror
  • doc_recat
  • docs_spike_source
  • docs_sim_sample_clar
  • docs_pip_warn
  • github_template_updates
  • docs_fix_link
  • cv_default_and_doc_clarification
  • docs_add_numpy_req
  • readme_zenodo_05
  • install_python_fix
  • install_require_numpy
  • typofix_propetries
  • docs_recipe_lookup
  • v0.10.0
  • v0.10.1
  • v0.10.0-rc5
  • v0.10.0-rc4
  • v0.10.0-rc3
  • v0.10.0-rc2
  • v0.10.0-rc
  • v0.9.0
  • v0.9.0-rc
  • v0.8.1
  • v0.8
  • v0.8-rc
  • v0.7
  • v0.6
  • v0.5.2
  • v0.5.1
  • v0.5
  • v0.4
  • v0.3
  • v0.2.2
41 results

functionexpander.hpp

Blame
  • __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