From 7e48ece8989e83e2016847e580a8e0cd6789ea68 Mon Sep 17 00:00:00 2001 From: Vishnunarayan K I <31964688+vn-ki@users.noreply.github.com> Date: Sat, 21 Apr 2018 19:22:26 +0530 Subject: [PATCH] Add python version check in setup.py (#268) --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 2e001f1..a4b2848 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ import re import ast + from setuptools import setup with open('README.md', 'r') as f: @@ -42,6 +43,7 @@ setup( author='Ritiek Malhotra and the spotify-downloader contributors', author_email='ritiekmalhotra123@gmail.com', license='MIT', + python_require='>=3.4', url='https://github.com/ritiek/spotify-downloader', download_url='https://pypi.org/project/spotify-downloader/', keywords=['spotify', 'downloader', 'download', 'music', 'youtube', 'mp3', 'album', 'metadata'],