Metadata-Version: 1.1
Name: bmipy
Version: 2.0
Summary: Basic Model Interface for Python
Home-page: http://csdms.colorado.edu
Author: Eric Hutton
Author-email: huttone@colorado.edu
License: UNKNOWN
Description: BMI for Python
        ==============
        
        Python bindings for the CSDMS `Basic Model Interface <https://bmi-spec.readthedocs.io>`_.
        
        Install
        -------
        
        Install *bmipy* with *pip*,
        
        .. code-block:: bash
        
          $ pip install bmipy
        
        If you're using Anaconda, you can also install *bmipy*
        with conda from the *conda-forge* channel,
        
        .. code-block:: bash
        
          $ conda install bmipy -c conda-forge
        
        To build and install *bmipy* from source,
        
        .. code-block:: bash
        
          $ git clone https://github.com/csdms/bmi-python
          $ cd bmi-python
          $ pip install .
        
        Usage
        -----
        
        .. code-block:: python
        
          from bmipy import Bmi
        
        
          class MyBmi(Bmi):
        
              def initialize(self, config_file):
                  # Your implementation goes here
        
        A complete sample implementation is given in the
        https://github.com/csdms/bmi-example-python
        repository.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering :: Physics
