From fcf34b18c032b8353468d670e5b1fe114cedce53 Mon Sep 17 00:00:00 2001 From: Ryan Verner Date: Sun, 22 Nov 2015 14:52:33 +1100 Subject: [PATCH] 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, )