irs/setup.py
Kepoor Hampond a02424a5ef Minor fixes
2017-01-01 17:54:04 -08:00

23 lines
494 B
Python

from setuptools import setup
setup(
name='irs',
version='2.6.16',
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.__main__:main'],
},
)