From 9cd8fdbc2fdb49ab1b4d3331b0135718b55c0035 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 9 Sep 2018 17:35:42 +0200 Subject: [PATCH] Minor fixes for a working 1.0.0 release (#347) --- setup.py | 5 +---- spotdl/spotdl.py | 1 + 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 8b317230d..54e3a238c 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 @@ 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 20e06de33..de67a73c1 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