diff --git a/setup.py b/setup.py index 8b31723..54e3a23 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,3 @@ -import re -import ast - from setuptools import setup with open('README.md', 'r') as f: @@ -36,7 +33,7 @@ setup( author='Ritiek Malhotra and the spotify-downloader contributors', author_email='ritiekmalhotra123@gmail.com', license='MIT', - python_require='>=3.4', + python_requires='>=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'], diff --git a/spotdl/spotdl.py b/spotdl/spotdl.py index 20e06de..de67a73 100755 --- a/spotdl/spotdl.py +++ b/spotdl/spotdl.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- +from spotdl import __version__ from spotdl import const from spotdl import handle from spotdl import metadata