Metadata-Version: 2.1
Name: pyoctave
Version: 2.0.0
Summary: simply python wrapper for octave
Home-page: https://github.com/equinor/pyoctave
Author: Equinor ASA
Author-email: fg_gpl@equinor.com
License: LGPL-3.0
Platform: UNKNOWN
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown

PyOctave
====

PyOctave is a simple python wrapper for running octave code from python.

```python
    from pyOctave import Octave
    with Octave() as oct:
         oct.zeros(3) # returns array([[0., 0., 0.], [0., 0., 0.], [0., 0., 0.]])
```

See docstring of [pyOctave.Octave](src/pyoctave/__init__.py#L50) for more examples.

Inspired by https://github.com/blink1073/oct2py.


