Browse Source

Conditionally installs enum34 only if < Python 3.4

pull/6/merge
Ryan Verner 10 years ago
committed by Rossen Georgiev
parent
commit
fcf34b18c0
  1. 16
      setup.py

16
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,
)

Loading…
Cancel
Save