From b1cb5913fac1281fbdc268de582df1048d72b26e Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 17 Jan 2016 20:48:51 +0000 Subject: [PATCH] updated README with install+setup sections --- README.rst | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b9dbd6d..1af16ee 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,38 @@ |pypi| |license| |coverage| |scru| |master_build| -Module for interacting with various Steam_ features. Install with ``pip install steam``. +Module for interacting with various Steam_ features. + +Installation +------------ + +Install latest version from PYPI:: + + pip install -U steam + +Install the current dev version from ``github``:: + + pip install git+https://github.com/ValvePython/steam + +Testing +------- + +To run the test suite with the current ``python``, use:: + + make test + +To run for specific version, setup a ``virtual environment``:: + + virtualenv -p python3 py3 + source py3/bin/active + make test + +To run for ``python 2.7``, ``3.3``, ``3.4`` and ``pypy``, assuming you have them installed:: + + tox + +------------------- +Basic documentation +------------------- SteamClient -----------