irs/setup.py
Kepoor Hampond 2230621e86 Updated pypi
2017-05-06 22:42:06 -07:00

23 lines
553 B
Python

from setuptools import setup
setup(
name = 'irs',
version = '6.4.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',
'youtube-dl',
'requests',
'spotipy',
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
},
)