Metadata-Version: 2.4
Name: metricgraph
Version: 0.1.1
Summary: Generate and plot metric and weighted graphs
Author: ploki99
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: matplotlib>=3.9
Requires-Dist: numpy>=1.26
Requires-Dist: vtk>=9.5
Description-Content-Type: text/markdown

# MetricGraph

**metricgraph** is a Python package to generate, manipulate, and visualize metric graphs in 2D and 3D.
It supports directed/undirected graphs, self-loops, connectivity constraints, and interactive plotting.

---

## 📚 Documentation

Full documentation is available at: [https://metricgraph.readthedocs.io/en/latest/](https://metricgraph.readthedocs.io/en/latest/)

---

## ⚡ Installation

You can install the package via pip:

```bash
pip install metricgraph
```

Or install from source:

```bash
git clone https://github.com/ploki99/metricgraph.git
cd metricgraph
pip install -e .
```

---

## 🚀 Examples

```python
import numpy as np
import random

from metricgraph import MetricGraph, WeightedGraph

# Construct 3D MetricGraph and plot it
vertices = [[0, 0, 0.1],
            [0, 0.8, -0.1],
            [1, 0, 0.4],
            [0.7, 0.4, 0.3]]

edges = [[0, 1], [0, 2], [1, 1], [2, 3], [3, 2]]
graph = MetricGraph(vertices, edges)
print(graph)
print(graph.get_properties())
graph.plot(directed=True)

# Generate 2D WeightedGraph and plot edges/vertices weights 
random.seed(42)
graph2 = WeightedGraph.generate_graph(n_vertices=10, n_dim=2)
graph2.set_edges_weight('edge_test', np.arange(9))
graph2.plot_weight('edge_test', title='test edges weight')
graph2.set_vertices_weight('vert_test', np.arange(10))
graph2.plot_weight('vert_test', title='test vertices weight')

```

---

## 🛠 Features

* Generate graphs with specified number of vertices, dimensions, and connectivity constraints
* Compute graph metrics and boundary nodes
* Interactive 2D/3D plotting
* Weighted graphs support
* Fully documented API

---

## 📄 License

[MIT License](LICENSE)
