irs/setup.py
Kepoor Hampond 319ffa975e Fix CLI
2017-10-19 08:42:24 -07:00

24 lines
576 B
Python

from setuptools import setup
setup(
name = 'irs',
version = '6.7.4',
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',
'ydl-binaries',
'splinter'
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
},
)