Browse Source

seperate steam client dependencies as an extra

pull/34/head
Rossen Georgiev 9 years ago
parent
commit
45235945b1
  1. 7
      README.rst
  2. 2
      requirements.txt
  3. 12
      setup.py

7
README.rst

@ -7,13 +7,20 @@ Module for interacting with various Steam_ features.
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 <https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers>`_::
Testing
-------

2
requirements.txt

@ -1,6 +1,6 @@
coverage==4.0.3
gevent-eventemitter==1.4
enum34==1.1.2
enum34==1.1.2; python_version < '3.4'
gevent==1.1.0
mock==1.3.0
nose==1.3.7

12
setup.py

@ -12,13 +12,18 @@ with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f:
__version__ = f.readline().split('"')[1]
install_requires = [
'pycrypto>=2.6.1',
'requests>=2.9.1',
'vdf>=2.0',
'pycrypto>=2.6.1',
]
install_extras = {
'client': [
'gevent>=1.1.0',
'gevent-eventemitter>=1.4',
'protobuf>=2.6.1',
]
'gevent-eventemitter>=1.4',
],
}
if sys.version_info < (3, 4):
install_requires.append('enum34>=1.0.4')
@ -43,5 +48,6 @@ setup(
keywords='valve steam steamid api webapi steamcommunity',
packages=['steam'] + ['steam.'+x for x in find_packages(where='steam')],
install_requires=install_requires,
extras_require=install_extras,
zip_safe=True,
)

Loading…
Cancel
Save