mirror of
				https://github.com/KevinMidboe/spotify-downloader.git
				synced 2025-10-29 18:00:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			641 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			641 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/python
 | |
| 
 | |
| import sys
 | |
| import os
 | |
| 
 | |
| if sys.version_info > (3,0):
 | |
| 	sys.exit("spotdl requires python 2.")
 | |
| 
 | |
| from setuptools import setup, find_packages
 | |
| 
 | |
| setup(name='spotdl',
 | |
|       version='0.1',
 | |
|       description='Downloads Songs and Spotify playlists (even for free accounts)',
 | |
|       author='Ritiek Malhotra',
 | |
|       author_email='ritiekmalhotra123@gmail.com',
 | |
|       scripts=['bin/spotdl'],
 | |
|       url='https://www.github.com/Ritiek/Spotify-Downloader/',
 | |
|       download_url = 'https://github.com/Ritiek/Spotify-Downloader/tarball/0.1',
 | |
|       keywords = ['download', 'songs', 'spotify', 'playlists', 'music'],
 | |
|       classifiers = [],
 | |
|      )
 |