Metadata-Version: 2.1
Name: helics
Version: 2.7.0.post1
Summary: Python HELICS bindings
Home-page: https://github.com/GMLC-TDC/pyhelics
Author: Dheepak Krishnamurthy
Author-email: me@kdheepak.com
License: MIT
Project-URL: Issue Tracker, https://github.com/GMLC-TDC/pyhelics/issues
Description: # PyHELICS
        
        [![](https://github.com/GMLC-TDC/pyhelics/workflows/CI/badge.svg)](https://github.com/GMLC-TDC/pyhelics/actions)
        [![](https://badges.gitter.im/GMLC-TDC/pyhelics.png)](https://gitter.im/GMLC-TDC/HELICS)
        [![](https://img.shields.io/badge/docs-ready-blue.svg)](https://python.helics.org)
        [![](https://codecov.io/gh/GMLC-TDC/pyhelics/branch/master/graph/badge.svg)](https://codecov.io/gh/GMLC-TDC/pyhelics)
        [![](https://img.shields.io/pypi/pyversions/helics)](https://pypi.org/project/helics/)
        [![](https://img.shields.io/pypi/wheel/helics)](https://pypi.org/project/helics/)
        [![](https://img.shields.io/pypi/v/helics)](https://pypi.org/project/helics/)
        [![](https://img.shields.io/pypi/dm/helics)](https://pypi.org/project/helics/)
        
        Python HELICS bindings
        
        ```bash
        pip install helics
        ```
        
        Documentation
        =============
        
        To use the project:
        
        ```python
        import helics as h
        h.helicsGetVersion()
        ```
        
        See <https://docs.helics.org> for more information about how to use HELICS.
        
        This package uses `cffi` to provide a Python interface to the [HELICS C API](https://docs.helics.org/en/latest/c-api-reference/index.html).
        
        By default, when you install from PyPI, the version number of the package will match the version of HELICS that is installed.
        For example, if you run the following:
        
        ```
        pip install helics
        ```
        
        You will also get precompiled binaries of [HELICS](https://github.com/GMLC-TDC/HELICS/releases/latest) for your platform if they exist.
        If they don't exist, a source distribution will be installed in which case the user must provide the location of the binaries.
        For more information, see <https://python.helics.org/installation>.
        
Keywords: helics,co-simulation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
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: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: docs
