Metadata-Version: 2.4
Name: ajp-graph
Version: 0.1.0
Summary: A powerful and elegant graph visualization and analysis library.
Author-email: Author Name <author@example.com>
Project-URL: Homepage, https://github.com/yourusername/ajp-graph
Project-URL: Bug Tracker, https://github.com/yourusername/ajp-graph/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: networkx>=3.0
Requires-Dist: matplotlib>=3.5.0
Dynamic: license-file

# 📊 AJP Graph

[![PyPI version](https://img.shields.io/pypi/v/ajp-graph.svg)](https://pypi.org/project/ajp-graph/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**AJP Graph** é uma biblioteca Python avançada para visualização e análise de grafos, projetada para ser rápida, intuitiva e esteticamente agradável.

## ✨ Funcionalidades

- 🚀 **Performance**: Otimizada para grandes volumes de dados.
- 🎨 **Estética**: Gráficos prontos para apresentação com paletas modernas.
- 🛠️ **Fácil de Usar**: API simples e direta.

## 📦 Instalação

```bash
pip install ajp-graph
```

## 🚀 Início Rápido

```python
from ajp_graph import Graph

# Crie um novo grafo
g = Graph()
g.add_node("A", label="Início")
g.add_node("B", label="Fim")
g.add_edge("A", "B", weight=1.5)

# Visualize
g.plot()
```

## 📄 Licença

Distribuído sob a licença MIT. Veja `LICENSE` para mais informações.

---
Desenvolvido com ❤️ por [Seu Nome]
