diff --git a/README.md b/README.md index e13a90a..a8cd6a4 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ ## About This Python library has the to potential to train your reinforcement learning algorithm on almost any arcade game. It is currently available on Linux systems and works as a wrapper around [MAME](http://mamedev.org/). The toolkit allows your algorithm to step through gameplay while recieving the frame data and internal memory address values for tracking the games state, along with sending actions to interact with the game. +## Requirements: +- Operating system: Linux +- Python version: 3.6+ + ## Installation You can use `pip` to install the library, just run: ```bash diff --git a/setup.py b/setup.py index 9849be8..c0733ae 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="MAMEToolkit", - version="1.0.1", + version="1.0.2", author="Michael Murray", author_email="m.j.murray123@gmail.com", description="A library to train your RL algorithms against MAME arcade games on Linux",