Metadata-Version: 2.1
Name: s2t2-game-utils
Version: 1.2
Summary: Gameplay logic for Rock-Paper-Scissors
Home-page: https://github.com/s2t2/game-utils-py
Author: MJ Rossetti
Author-email: datacreativellc@gmail.com
License: MIT
Keywords: rock paper scissors game
Platform: UNKNOWN
Description-Content-Type: text/markdown


# Rock Paper Scissors Gameplay Logic (Python)

[![PyPI version](https://badge.fury.io/py/s2t2-game-utils.svg)](https://badge.fury.io/py/s2t2-game-utils)

[![Build Status](https://travis-ci.com/s2t2/game-utils-py.svg?branch=master)](https://travis-ci.com/s2t2/game-utils-py)


## Installation

Install the package using one of the following commands, as desired:

```sh
# from PyPI (recommended):
pip install s2t2-game-utils

# from PyPI Test server:
pip install -i https://test.pypi.org/simple/ s2t2-game-utils

# from GitHub source (HTTPS version):
pip install git+https://github.com/s2t2/game-utils-py.git

# from GitHub source (SSH version):
pip install git+ssh://git@github.com/s2t2/game-utils-py.git

# from local source (after downloading the repo):
pip install -e path/to/game-utils-py/
```

## Usage

```py
from game_utils.rock_paper_scissors import *

print(WELCOME_MESSAGE) #> Hi. Welcome to my Rock-Paper-Scissors game!

determine_winner("rock", "paper") #> "paper"
```

## [Contributing](/CONTRIBUTING.md)

## [Releasing](/RELEASING.md)

## [License](/LICENSE.md)


