Python version requirement added to setup

master
Anthony Forsberg 2017-05-26 12:59:06 -04:00
parent 303e9315cb
commit 5bb969f8d7
2 changed files with 3 additions and 7 deletions

View File

@ -39,7 +39,7 @@ Description
-----------
bandcamp-dl is a small command-line app to download audio from
BandCamp.com. It requires the Python interpreter, version 3.5+ and is
BandCamp.com. It requires the Python interpreter, version 3.4+ and is
not platform specific. It is released to the public domain, which means
you can modify it, redistribute it or use it how ever you like.

View File

@ -3,12 +3,7 @@ from codecs import open
from os import path
import sys
appversion = "0.0.8-06"
pyversion = int("{}{}".format(sys.version_info[0], sys.version_info[1]))
if not pyversion >= 34:
print('Python 3.4+ is required')
sys.exit(1)
appversion = "0.0.8-07"
here = path.abspath(path.dirname(__file__))
@ -36,6 +31,7 @@ setup(
],
keywords=['bandcamp', 'downloader', 'music', 'cli', 'albums', 'dl'],
packages=find_packages(exclude=['tests']),
python_requires='~=3.4',
install_requires=[
'beautifulsoup4',
'demjson',