Metadata-Version: 2.0
Name: nengolib
Version: 0.4.2
Summary: Tools for robust dynamics in Nengo
Home-page: https://github.com/arvoelke/nengolib/
Author: Aaron R. Voelker
Author-email: arvoelke@gmail.com
License: Free for non-commercial use (see Nengo license)
Download-URL: https://github.com/arvoelke/nengolib/archive/v0.4.2.tar.gz
Keywords: Neural Engineering Framework,Nengo,Dynamical Spiking Networks,Neural Dynamics,Reservoir Computing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: Free for non-commercial use
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: nengo (>=2.1.0)
Requires-Dist: numpy (>=1.10)
Requires-Dist: scipy (>=0.17.0)

.. image:: https://arvoelke.github.io/nengolib-docs/_static/logo.png
   :width: 64
   :height: 64
   :target: https://github.com/arvoelke/nengolib
   :alt: Nengolib Logo

.. image:: https://travis-ci.org/arvoelke/nengolib.svg?branch=master
   :target: https://travis-ci.org/arvoelke/nengolib
   :alt: Build Status

.. image:: https://codecov.io/github/arvoelke/nengolib/coverage.svg?branch=master
   :target: https://codecov.io/github/arvoelke/nengolib?branch=master
   :alt: Code Coverage

import nengolib
===============

Additional extensions and tools for modelling dynamical systems in
`Nengo <https://github.com/nengo/nengo>`__.


`Documentation <https://arvoelke.github.io/nengolib-docs/>`__
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This project's documentation is hosted on GitHub.IO:
https://arvoelke.github.io/nengolib-docs/.


Development
~~~~~~~~~~~

To install the development version of nengolib::

    git clone https://github.com/arvoelke/nengolib
    cd nengolib
    python setup.py develop

Notebooks can be run manually in ``docs/notebooks`` by running::

    pip install jupyter
    jupyter notebook

***************
Release History
***************

0.4.2 (May 18, 2018)
====================

Tested against Nengo versions 2.1.0-2.7.0.

**Added**

- Solving for connection weights by accounting for the neural
  dynamics. To use, pass in ``nengolib.Temporal()`` to
  ``nengo.Connection`` for the ``solver`` parameter.
  Requires ``nengo>=2.5.0``.
  (`#137 <https://github.com/arvoelke/nengolib/pull/137>`_)

0.4.1 (December 5, 2017)
========================

Tested against Nengo versions 2.1.0-2.6.0.

**Fixed**

- Compatible with newest SciPy release (1.0.0).
  (`#130 <https://github.com/arvoelke/nengolib/pull/130>`_)

0.4.0b (June 7, 2017)
=====================

Initial beta release of nengolib.
Tested against Nengo versions 2.1.0-2.4.0.


