irs/setup.py
Kepoor Hampond 385fabda61 init
2017-11-28 08:42:46 -08:00

26 lines
617 B
Python

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