irs/setup.py

23 lines
553 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name = 'irs',
2017-05-12 23:37:21 +00:00
version = '6.5.6',
description = 'A music downloader that just gets metadata.',
url = 'https://github.com/kepoorhampond/irs',
author = 'Kepoor Hampond',
author_email = 'kepoorh@gmail.com',
license = 'GPL',
packages = ['irs'],
2016-12-10 23:40:43 +00:00
install_requires=[
'bs4',
'mutagen',
'youtube-dl',
'requests',
'spotipy',
2016-12-10 23:40:43 +00:00
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
2016-12-10 23:40:43 +00:00
},
)