diff --git a/CHANGES.md b/CHANGES.md index 532d393..e6fcbbb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,7 @@ This release brings breaking changes - Removed imports from 'steam' namespace - Renamed `steam.util` to `steam.utils` - Moved proto utils to `steam.utils.proto` +- Moved SteamClient dependecies to `client` extras ### steam.steamid diff --git a/README.rst b/README.rst index 9dabe27..0bb1427 100644 --- a/README.rst +++ b/README.rst @@ -29,18 +29,28 @@ Install For system specific details, see `Installation Details `_. -Install latest version from PYPI +Install latest release version from PYPI: .. code:: bash + # with SteamClient dependecies + pip install -U steam[client] + + # without (only when using parts that do no rely on gevent, and protobufs) pip install -U steam -Install the current dev version from ``github`` +Installing directly from ``github`` repository: .. code:: bash + # cutting edge from master pip install git+https://github.com/ValvePython/steam#egg=steam + # specific version tag (e.g. v1.0.0) + pip install git+https://github.com/ValvePython/steam@v1.0.0#egg=steam[client] + # without SteamClient extras + pip install git+https://github.com/ValvePython/steam@v1.0.0#egg=steam + Vagrant ------- diff --git a/docs/intro.rst b/docs/intro.rst index 781bd3e..be2d7df 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -35,8 +35,18 @@ For system specific details, see :doc:`install`. Install latest version from PYPI:: + # with SteamClient dependecies + pip install -U steam[client] + + # without (only when using parts that do no rely on gevent, and protobufs) pip install -U steam Install the current dev version from ``github``:: + # cutting edge from master pip install git+https://github.com/ValvePython/steam#egg=steam + + # specific version tag (e.g. v1.0.0) + pip install git+https://github.com/ValvePython/steam@v1.0.0#egg=steam[client] + # without SteamClient extras + pip install git+https://github.com/ValvePython/steam@v1.0.0#egg=steam diff --git a/setup.py b/setup.py index 486e1ab..0100d17 100644 --- a/setup.py +++ b/setup.py @@ -19,14 +19,15 @@ install_requires = [ 'pycryptodomex>=3.7.0', 'requests>=2.9.1,<2.22.0', 'vdf>=3.3', - 'gevent>=1.3.0', - 'protobuf>=3.0.0', - 'gevent-eventemitter>=2.1', 'cachetools>=3.0.0', ] install_extras = { - 'client': [], + 'client': [ + 'gevent>=1.3.0', + 'protobuf>=3.0.0', + 'gevent-eventemitter>=2.1', + ], } if sys.version_info < (3, 4):