Metadata-Version: 2.1
Name: g2o-python
Version: 0.0.10
Summary: Wrapper package for G2O python bindings.
Home-page: https://github.com/miquelmassot/g2o-python
Maintainer: Miquel Massot
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: 3.10
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scikit-build

[![CI](https://github.com/miquelmassot/g2o-python/actions/workflows/python-package.yml/badge.svg)](https://github.com/miquelmassot/g2o-python/actions/workflows/python-package.yml)
[![Wheels](https://github.com/miquelmassot/g2o-python/actions/workflows/wheels.yml/badge.svg)](https://github.com/miquelmassot/g2o-python/actions/workflows/wheels.yml)
[![PyPI](https://img.shields.io/pypi/v/g2o-python)](https://pypi.org/project/g2o-python/)
[![CondaForge](https://img.shields.io/conda/v/conda-forge/g2o-python.svg)](https://anaconda.org/conda-forge/g2o-python)
[![downloads](https://pepy.tech/badge/g2o-python/month)](https://pepy.tech/project/g2o-python)
[![versions](https://img.shields.io/pypi/pyversions/g2o-python)](https://pypi.org/project/g2o-python/)
[![license](https://img.shields.io/github/license/miquelmassot/g2o-python.svg)](https://github.com/miquelmassot/g2o-python/blob/main/LICENSE)



# g2o-python

This is a wrapper of the python binding of [g2o](https://github.com/RainerKuemmerle/g2o) using its branch `pymem`.

## How to use it in your code

```python
import g2o
# Your code

```

More examples [available here](https://github.com/RainerKuemmerle/g2o/tree/pymem/python/examples).


## How to install
Use the released Pypi version, running
```bash
pip install -U g2o-python
```

## Build from source

Clone this repository and run `pip install -U --user -v .`
