Metadata-Version: 2.1
Name: ingescape
Version: 3.6.4
Summary: Ingescape library python3 binding
Author-email: Ingenuity I/O <contact@ingenuity.io>
License: Copyright (c) the Contributors as noted in the AUTHORS file.
        This file is part of Ingescape, see https://github.com/zeromq/ingescape.
        This Source Code Form is subject to the terms of the Mozilla Public
        License, v. 2.0. If a copy of the MPL was not distributed with this
        file, You can obtain one at http://mozilla.org/MPL/2.0/.
Project-URL: Homepage, https://ingescape.com/
Project-URL: Repository, https://github.com/zeromq/ingescape.git
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: wheel

# Ingescape Python binding

## Dependencies

The Ingescape Python binding relies on the following libraries:

- Python 3.6+ 
- setuptools, wheel


## Installing

Ingescape python binding is designed to be installed through pip :

    python3 -m pip install ingescape


## Using Ingescape with Python

Two examples are provided in the 'examples' directory.


## Compiling the Ingescape Python binding

Ingescape library must be built before compiling the python binding.
The directory in which the library is expected to be built is given by the prepare scripts..
Run the following commands from the Ingescape Python directory :

    python3 -m pip install setuptools wheel
    ./prepare_for_packaging.sh (or prepare_for_packaging.ps1 for Windows Powershell)
    # Build package 
    python3 -m build
    # Install locally
    python3 -m pip install .
