Metadata-Version: 2.4
Name: pychomp2
Version: 1.1.2
Summary: CHomP (Computational Homology Project) Python Extension
Home-page: https://github.com/marciogameiro/pyCHomP2
Author: Marcio Gameiro
Author-email: marciogameiro@gmail.com
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: graphviz
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# pyCHomP2

CHomP (Computational Homology Project) with Python bindings

## Installation

To get the latest tagged version from the PyPi repository:

```bash
pip install pychomp2
```

To uninstall:

```bash
pip uninstall pychomp2
```

## Installing from source

The recommended way to install `pyCHomP2` is using `pip` as above. To get the bleeding edge version (i.e., this repo) install with the commands below. This requires a `C++` compiler.

```bash
git clone https://github.com/marciogameiro/pyCHomP2.git
cd pyCHomP2
pip install . --force-reinstall --no-deps --no-cache-dir
```

Or install directly from `GitHub`:

```bash
pip install --force-reinstall --no-deps --no-cache-dir git+https://github.com/marciogameiro/pyCHomP2.git
```
