Skip to content

Commit

Permalink
docs: Updated docs to include package information.
Browse files Browse the repository at this point in the history
  • Loading branch information
KaleabTessera committed Jun 9, 2021
1 parent a71af7a commit 4b36832
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Mava: a research framework for distributed multi-agent reinforcement learning

![PyPI Python Version](https://img.shields.io/pypi/pyversions/id-mava)
![PyPI version](https://badge.fury.io/py/id-mava.svg)
![pytest](https://github.com/arnupretorius/mava/workflows/format_and_test/badge.svg)

# Table of Contents
Expand Down Expand Up @@ -178,6 +180,12 @@ We have tested `mava` on Python 3.6, 3.7 and 3.8.
pip install id-mava[reverb]
```

Or for nightly builds:
```bash
pip install id-mava-nightly
pip install id-mava-nightly[reverb]
```

3. To install dependencies for tensorflow agents:
```bash
pip install id-mava[tf]
Expand Down
2 changes: 1 addition & 1 deletion mava/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = "0"
_MINOR_VERSION = "0"
_PATCH_VERSION = "1"
_PATCH_VERSION = "9"

# Example: '0.4.2'
__version__ = ".".join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])

0 comments on commit 4b36832

Please sign in to comment.