From f191c829c614bdeb1aef2c724bbd23cf14970803 Mon Sep 17 00:00:00 2001 From: Ryan Verner Date: Sun, 22 Nov 2015 01:11:36 +1100 Subject: [PATCH 1/2] Remove enum34 (preventing install on Python 3.5) --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 92acdd2..4509e7c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,4 @@ nose coverage mock requests -enum34 vcrpy From 226aa4df62de168cda85e36a881f2e8f07f52584 Mon Sep 17 00:00:00 2001 From: Ryan Verner Date: Sun, 22 Nov 2015 14:52:33 +1100 Subject: [PATCH 2/2] Conditionally installs enum34 only if < Python 3.4 --- setup.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index bfc93b1..8db0600 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup from codecs import open from os import path - +import sys here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: @@ -11,6 +11,14 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f: with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f: __version__ = f.readline().split('"')[1] +install_requires = [ + 'requests', + 'vdf', +] + +if sys.version_info < (3, 4): + install_requires.append('enum34>=1.0.4') + setup( name='steam', version=__version__, @@ -30,10 +38,6 @@ setup( ], keywords='valve steam steamid api webapi', packages=['steam'], - install_requires=[ - 'enum34', - 'requests', - 'vdf', - ], + install_requires=install_requires, zip_safe=True, )