Metadata-Version: 2.1
Name: pdmn
Version: 0.0.1
Summary: A package providing a pDMN solver
Home-page: UNKNOWN
Author: Simon Vandevelde
Author-email: s.vandevelde@kuleuven.be
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: openpyxl (==3.0.0)
Requires-Dist: ply (==3.11)
Requires-Dist: numpy
Requires-Dist: python-dateutil
Requires-Dist: problog

# pDMN

## Welcome to the pDMN solver's code repository.

pDMN stands for Probabilistic Decision and Model Notation.
It is an extension to the [DMN](https://www.omg.org/spec/DMN/About-DMN/) standard, which aims to add probabilistic reasoning while maintaining DMN's goal of being readable and user-friendly.

## Installation and usage

In short for Linux: after cloning this repo, install the Python dependencies.

```
git clone https://gitlab.com/EAVISE/cdmn/pdmn-solver
cd pdmn-solver
pip3 install -r requirements.txt
```

After this, you can run the solver. Example usage is as follows:

```
python3 -O solver.py Name_Of_XLSX.xlsx -n "Name_Of_Sheet" -o output_name.idp
```


