From 43409c4f148957dad3546e45d0fea4da6ee7f10b Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 9 Feb 2017 20:08:53 +0200 Subject: [PATCH] removed 'client' extra --- README.rst | 6 ------ docs/intro.rst | 7 ------- setup.py | 9 ++++----- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/README.rst b/README.rst index 0581805..03f7ba3 100644 --- a/README.rst +++ b/README.rst @@ -25,20 +25,14 @@ Quick install For details on require system packages, see `Full Installation `_. -By default the ``steam`` package doesn't install all dependecies. -Add ``[client]`` extra if you are going to use ``SteamClient``. - Install latest version from PYPI:: pip install -U steam - pip install -U steam[client] Install the current dev version from ``github``:: pip install git+https://github.com/ValvePython/steam - pip install git+https://github.com/ValvePython/steam#egg=steam[client] -For extras syntax in ``requirements.txt`` see `pip docs `_ Testing ------- diff --git a/docs/intro.rst b/docs/intro.rst index 029affc..87bf879 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -29,17 +29,10 @@ Quick install For details on require system packages, see :doc:`install`. -By default the ``steam`` package doesn't install all dependencies. -Add ``[client]`` extra if you are going to use :class:`SteamClient `. - Install latest version from PYPI:: pip install -U steam - pip install -U steam[client] Install the current dev version from ``github``:: pip install git+https://github.com/ValvePython/steam - pip install git+https://github.com/ValvePython/steam#egg=steam[client] - -For extras syntax in ``requirements.txt`` see `pip docs `_ diff --git a/setup.py b/setup.py index 8b76636..1856b2b 100644 --- a/setup.py +++ b/setup.py @@ -19,14 +19,13 @@ install_requires = [ 'cryptography>=1.3', 'requests>=2.9.1', 'vdf>=2.0', + 'gevent>=1.1.0', + 'protobuf>=3.0.0', + 'gevent-eventemitter>=2.0', ] install_extras = { - 'client': [ - 'gevent>=1.1.0', - 'protobuf>=3.0.0', - 'gevent-eventemitter>=2.0', - ], + 'client': [], } if sys.version_info < (3, 4):