Metadata-Version: 2.1
Name: pynauty-prebuilt
Version: 2.8.8.1
Summary: Pre-built wheel for pynauty - Isomorphism testing and automorphisms of graphs
Home-page: https://github.com/pdobsan/pynauty
Author: Peter Dobsan (wheel repackaged by EMD)
License: GNU General Public License v3
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown

# pynauty-prebuilt

Pre-compiled wheel for pynauty, eliminating the need for a C compiler during installation.

This is a repackaged version of [pynauty](https://github.com/pdobsan/pynauty) with pre-built binaries.

## Installation

```bash
pip install pynauty-prebuilt
```

## Usage

```python
from pynauty import Graph, autgrp

g = Graph(5)
g.connect_vertex(0, [1, 2, 3])
result = autgrp(g)
```

## Note

This package provides the same `pynauty` module as the original package.
