mirror of
https://github.com/cooperhammond/irs.git
synced 2025-01-09 20:15:27 +00:00
25 lines
822 B
Python
25 lines
822 B
Python
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',
|
|
'irs.install', 'irs.cli'],
|
|
install_requires = [
|
|
'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
|
|
],
|
|
entry_points = {
|
|
'console_scripts': ['irs = irs.cli.cli:main'],
|
|
},
|
|
)
|