Metadata-Version: 2.1
Name: typed-graph
Version: 0.1.3
Summary: Staticly typed graph library
Home-page: https://github.com/build-aau/typed_graph
Author: lcabyg
Author-email: lcabyg@build.aau.dk
License: Apache Software License v2.0
Keywords: graph,type
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: ~=3.10
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE
Requires-Dist: pydantic ~=2.5
Requires-Dist: typing ~=3.7
Provides-Extra: pdf
Requires-Dist: ReportLab >=1.2 ; extra == 'pdf'
Requires-Dist: RXP ; extra == 'pdf'
Provides-Extra: rest
Requires-Dist: docutils >=0.3 ; extra == 'rest'
Requires-Dist: pack ==1.1,==1.3 ; extra == 'rest'

# TypedGraph
Is a staticly typed graph library.
This is a cross compatible port of [TypedGraph][typed_graph-crates-io].

[![pypi](https://img.shields.io/pypi/v/typed_graph.svg)](https://pypi.org/pypi/typed_graph/)

TypedGraph is build to provide an easy to use interface for manipulating an maintaining graphs with a rigid schema.

## Getting started
install using
```
pip install typed_graph
```

see the [example folder][examples-git] for information on how to create your first project using TypedGraph.

> Note that making and maintianing large static graphs can be time consuming, so using like [typed_graph_cli][typed_graph_cli-git] will make the library significantly easier to maintian 

## Development
To run a local instance of the library:
```
.../typed_graph_py> pip install -e .
```

This will import the library using a symlink, so changes in the directory will be propegated to the python installation

Now it can be used as normal
```
import type_graph
```

[typed_graph-crates-io]: https://crates.io/crates/typed_graph
[examples-git]: https://github.com/build-aau/typed_graph/tree/master/typed_graph_py/examples "example folder in git"
[typed_graph_cli-git]: https://github.com/build-aau/typed_graph_cli "typed_graph_cli in git"

