Metadata-Version: 2.1
Name: pykoopman
Version: 0.1.0
Summary: Python package for computing data-driven approximations to
    the Koopman operator.
Home-page: https://github.com/dynamicslab/pykoopman
Author: Eurika Kaiser, Brian de Silva
Author-email: eurika@uw.edu, bdesilva@uw.edu
License: MIT
Description: PyKoopman
        =========
        
        |Build| |Docs| |PyPI|
        
        **PyKoopman** is a Python package for computing data-driven approximations to the Koopman operator.
        TODO: improve description
        
        
        Installation
        -------------
        
        Installing with pip
        ^^^^^^^^^^^^^^^^^^^
        
        If you are using Linux or macOS you can install PyKoopman with pip:
        
        .. code-block:: bash
        
          pip install pykoopman
        
        Installing from source
        ^^^^^^^^^^^^^^^^^^^^^^
        First clone this repository:
        
        .. code-block:: bash
        
          git clone https://github.com/dynamicslab/pykoopman
        
        Then, to install the package, run
        
        .. code-block:: bash
        
          pip install .
        
        If you do not have pip you can instead use
        
        .. code-block:: bash
        
          python setup.py install
        
        If you do not have root access, you should add the ``--user`` option to the above lines.
        
        Documentation
        -------------
        The documentation for PyKoopman is hosted on `Read the Docs <https://pykoopman.readthedocs.io/en/latest/>`__.
        
        Community guidelines
        --------------------
        
        Contributing code
        ^^^^^^^^^^^^^^^^^
        We welcome contributions to PyKoopman. To contribute a new feature please submit a pull request. To get started we recommend installing the packages in ``requirements-dev.txt`` via
        
        .. code-block:: bash
        
            pip install -r requirements-dev.txt
        
        This will allow you to run unit tests and automatically format your code. To be accepted your code should conform to PEP8 and pass all unit tests. Code can be tested by invoking
        
        .. code-block:: bash
        
            pytest
        
        We recommed using ``pre-commit`` to format your code. Once you have staged changes to commit
        
        .. code-block:: bash
        
            git add path/to/changed/file.py
        
        you can run the following to automatically reformat your staged code
        
        .. code-block:: bash
        
            pre-commit -a -v
        
        Note that you will then need to re-stage any changes ``pre-commit`` made to your code.
        
        Reporting issues or bugs
        ^^^^^^^^^^^^^^^^^^^^^^^^
        If you find a bug in the code or want to request a new feature, please open an issue.
        
        References
        ------------
        TODO: Add appropriate references
        
        -  Williams, Matthew O., Ioannis G. Kevrekidis, and Clarence W. Rowley.
           "A data–driven approximation of the koopman operator: Extending dynamic mode decomposition."
           Journal of Nonlinear Science 25, no. 6 (2015): 1307-1346.
           `[DOI] <https://doi.org/10.1007/s00332-015-9258-5>`_
        
        .. |Build| image:: https://github.com/dynamicslab/pykoopman/workflows/Tests/badge.svg
            :target: https://github.com/dynamicslab/pykoopman/actions?query=workflow%3ATests
        
        .. |Docs| image:: https://readthedocs.org/projects/pykoopman/badge/?version=latest
            :target: https://pykoopman.readthedocs.io/en/latest/?badge=latest
            :alt: Documentation Status
        
        .. |PyPI| image:: https://badge.fury.io/py/pykoopman.svg
            :target: https://badge.fury.io/py/pykoopman
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
