irs/setup.py

23 lines
602 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name = 'irs',
version = '7.0.0',
description = 'A music downloader that gets metadata too.',
url = 'https://github.com/kepoorhampond/irs',
author = 'Kepoor Hampond',
author_email = 'kepoorh@gmail.com',
license = 'GPL',
packages = ['irs', 'irs.search', 'irs.interact', 'irs.glue'],
install_requires = [
'bs4',
'mutagen',
2019-05-28 17:48:26 +00:00
'argparse'
'spotipy',
2017-10-10 15:18:32 +00:00
'ydl-binaries',
2016-12-10 23:40:43 +00:00
],
entry_points = {
'console_scripts': ['irs = irs.glue.cli:main'],
2016-12-10 23:40:43 +00:00
},
)