Metadata-Version: 2.1
Name: uppaal-py
Version: 0.0.1
Summary: UPPAAL wrapper for Python
Home-page: UNKNOWN
Author: Deniz Koluaçık
Author-email: koluacik@disroot.org
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: networkx

# uppaal-py
UPPAAL wrapper for Python. Currently supports reading from and writing to .xml files. Works with Python >= 3.8.

## Dependencies
* [NetworkX](https://github.com/networkx/networkx)

## Installation
Via pip:
```
pip install uppaal-py
```

Or you can just install the dependencies and copy the dir `uppaalpy` into your project.

## Usage
```Python
>>> from uppaalpy import nta
>>> my_nta = nta.NTA.fromXML('test.xml')
>>> my_nta.to_file('test_new.xml', pretty = True)
```

## License
[MIT](https://mit-license.org/)


