irs/setup.py

25 lines
822 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',
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
'pyyaml' # Config files done simply
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
},
)