Metadata-Version: 2.1
Name: graphRL
Version: 0.0.1
Summary: a directed acyclic graph environment for use with openAI gym
Home-page: https://github.com/luludarcy/graphRL
Author: Laura D'Arcy
Author-email: luludarcy@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: gym

This repository contains a PIP package which is an OpenAI environment for simulating directed acyclic graphs for workflow scheduling.


## Installation

Install the [OpenAI gym](https://gym.openai.com/docs/).

Then install this package via

```bash
pip install -e .
```

## Usage

```python
import gym
import graphRL

env = gym.make('graphRL-v0')
```


## The Environment

Tbc.

