Add python version check in setup.py (#268)

This commit is contained in:
Vishnunarayan K I
2018-04-21 19:22:26 +05:30
committed by Ritiek Malhotra
parent 745066a646
commit 7e48ece898

View File

@@ -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'],