irs/setup.py
2017-03-13 21:03:03 -07:00

23 lines
488 B
Python

from setuptools import setup
setup(
name='irs',
version='6.1.2',
description='A music downloader that just gets metadata.',
url='https://github.com/kepoorhampond/irs',
author='Kepoor Hampond',
author_email='kepoorh@gmail.com',
license='GNU',
packages =['irs'],
install_requires=[
'bs4',
'mutagen',
'youtube-dl',
'requests',
'spotipy',
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
},
)