Metadata-Version: 2.4
Name: plangraph
Version: 0.1.0
Summary: A Plan Graph for Goal Optimization (PGGO or 'pogo')
Home-page: https://github.com/alecramsay/pggo
Author: alecramsay
Author-email: Alec Ramsay <a73cram5ay@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/alecramsay/pggo
Project-URL: Bug Tracker, https://github.com/alecramsay/pggo/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rdapy
Requires-Dist: networkx
Dynamic: author
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist

# pggo

A PLAN GRAPH for GOAL OPTIMIZATION (PGGO or "pogo")

## Usage

```python
plan: PlanGraph = PlanGraph(
    "NC",
    "congress",
    "testdata/NC_congress_root_map.csv",
    "testdata/NC_input_data.jsonl",
    "testdata/NC_graph.json",
)
```

See [PlanGraph Documentation](docs/PlanGraph.md) for more details.

## Installing the Package

To install the package:

```bash
pip install plangraph
```

The latest version of the package is 0.1.0.

Then in your code, either `import plangraph` or `from plangraph import ...`.

## Testing

Run automated tests with:

```bash
pytest
```

