mirror of
https://github.com/cooperhammond/irs.git
synced 2024-11-09 18:48:33 +00:00
23 lines
556 B
Python
23 lines
556 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name = 'irs',
|
|
version = '6.6.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'
|
|
],
|
|
entry_points = {
|
|
'console_scripts': ['irs = irs.cli:main'],
|
|
},
|
|
)
|