fixed bugs and improved stability

This commit is contained in:
Ritiek Malhotra
2016-07-15 22:51:37 +05:30
committed by GitHub
parent ef5cc07d25
commit 1637b28178
8 changed files with 368 additions and 0 deletions

18
setup.py Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/python
import sys
import os
if sys.version_info > (3,0):
sys.exit("YTMusic requires python 2.")
from setuptools import setup, find_packages
setup(name='YTMusic',
version='0.1',
description='Download songs just by entering the song name and artist.',
author='Ritiek Malhotra',
author_email='ritiekmalhotra123@gmail.com',
url='https://www.github.com/Ritiek/YTMusic/',
scripts=['bin/YTMusic'],
)