irs/setup.py

26 lines
872 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name = 'irs',
2019-05-29 15:14:42 +00:00
version = '7.0.1',
description = 'A music downloader that gets metadata too.',
url = 'https://github.com/kepoorhampond/irs',
author = 'Kepoor Hampond',
author_email = 'kepoorh@gmail.com',
license = 'GPL',
2019-05-29 05:36:23 +00:00
packages = ['irs', 'irs.search', 'irs.interact', 'irs.glue',
'irs.install', 'irs.cli'],
install_requires = [
2019-05-29 05:36:23 +00:00
'bs4', # HTML parsing
'mutagen', # MP3 tags
'argparse', # CLI arg parsing
'spotipy', # Interfacing w/ Spotify API
'ydl-binaries', # Downloading ffmpeg/ffprobe binaries
2019-05-29 15:14:42 +00:00
'pyyaml', # Config files done simply
'youtube-dl' # Download youtube videos
2016-12-10 23:40:43 +00:00
],
entry_points = {
2019-05-29 05:36:23 +00:00
'console_scripts': ['irs = irs.cli.cli:main'],
2016-12-10 23:40:43 +00:00
},
)