Browse Source

removed 'client' extra

pull/35/merge
Rossen Georgiev 8 years ago
parent
commit
43409c4f14
  1. 6
      README.rst
  2. 7
      docs/intro.rst
  3. 9
      setup.py

6
README.rst

@ -25,20 +25,14 @@ Quick install
For details on require system packages, see `Full Installation <http://steam.readthedocs.io/en/latest/install.html>`_.
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 <https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers>`_
Testing
-------

7
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 <steam.client.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 <https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers>`_

9
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):

Loading…
Cancel
Save