irs/setup.py

26 lines
617 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name = 'irs',
2017-11-06 07:09:56 +00:00
version = '6.7.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'],
install_requires = [
'bs4',
'mutagen',
'requests',
'spotipy',
2017-10-10 15:18:32 +00:00
'ydl-binaries',
2017-11-28 16:42:46 +00:00
'splinter',
'colorama',
'draftlog',
2016-12-10 23:40:43 +00:00
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
2016-12-10 23:40:43 +00:00
},
)