irs/setup.py

23 lines
556 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name = 'irs',
2017-10-01 01:36:27 +00:00
version = '6.7.3',
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'
2016-12-10 23:40:43 +00:00
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
2016-12-10 23:40:43 +00:00
},
)