Metadata-Version: 2.1
Name: helics
Version: 2.6.1
Summary: Hierarchical Engine for Large-scale Infrastructure Co-Simulation (HELICS)
Home-page: https://github.com/GMLC-TDC/HELICS
Author: GMLC-TDC
Author-email: helicsdevelopers@helics.org
Maintainer: 
Maintainer-email: 
License: BSD
Download-URL: https://github.com/GMLC-TDC/HELICS/releases
Keywords: co-simulation
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown

# HELICS Python Interface
[HELICS](https://github.com/GMLC-TDC/HELICS) is a cross-platform co-simulation framework that enables multiple
simulation tools to exchange data and stay synchronized in time to create larger simulations. This is the Python
wrapper for the C API provided by HELICS. If you're looking for the HELICS apps, see the [helics_apps](https://pypi.org/project/helics_apps/)
pip package.

## Installation
As a general recommendation if you are on an older system or version of Python, it is probably a good idea to
update pip with `python -m pip install --upgrade` to make sure you have the latest features. At minimum for
the Linux binary wheels to work properly, [pip 19.0 is required](https://packaging.python.org/specifications/platform-compatibility-tags/#manylinux-compatibility-support).

After that, running `python -m pip install helics` should fetch a binary wheel if one is available for your
platform. Otherwise, you may need to set your environment up with a HELICS install and CMake so that pip can
build the extension from source.

### Binary distributions
This package provides pre-compiled binary wheels for the following CPython versions:

* Linux 64-bit Python 2.7 and 3.4-3.8 (manylinux2010 compatible)
* macOS (10.9+) 64-bit Python 2.7 and 3.5-3.8
* Windows 32/64-bit Python 2.7 and 3.5-3.8

Each of the binary wheels for the above platforms includes a copy of the helics C shared library. For other
HELICS apps such as the broker, the HELICS project provides pre-compiled copies of those apps for 64-bit
macOS and Windows systems on the [GitHub Releases page](https://github.com/GMLC-TDC/HELICS/releases) and in
a pip package called [helics_apps](https://https://pypi.org/project/helics_apps/)

### Source distributions
In addition, a source distribution is provided to build a copy of the Python interface from source. You will
need a recent copy of CMake and a C++11 compatible compiler to build and install a copy of HELICS on your system
first. After that, pip can be used to build the Python extension. Note that if you installed HELICS to location
not on your system PATH, you may need to set `CMAKE_PREFIX_PATH` to the HELICS install prefix (the folder
with lib/include/share subfolders) prior to using pip to build the interface.


## Release
HELICS is distributed under the terms of the BSD-3 clause license. All new
contributions must be made under this license. [LICENSE](LICENSE)

SPDX-License-Identifier: BSD-3-Clause


