irs/setup.py

23 lines
493 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name='irs',
2017-02-18 17:57:30 +00:00
version='5.0.2',
2016-12-11 00:26:11 +00:00
description='A music downloader that just gets metadata.',
url='https://github.com/kepoorhampond/irs',
2016-12-10 23:40:43 +00:00
author='Kepoor Hampond',
author_email='kepoorh@gmail.com',
license='GNU',
packages =['irs'],
2016-12-10 23:40:43 +00:00
install_requires=[
'bs4',
'mutagen',
'youtube-dl',
'requests',
2017-01-01 20:09:12 +00:00
'spotipy',
2016-12-10 23:40:43 +00:00
],
entry_points = {
'console_scripts': ['irs = irs.__main__:main'],
2016-12-10 23:40:43 +00:00
},
)