mirror of
https://github.com/cooperhammond/irs.git
synced 2025-02-01 08:01:00 +00:00
22 lines
476 B
Python
22 lines
476 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='irs',
|
|
version='1.0.2',
|
|
description='A music downloader that just gets metadata.',
|
|
url='https://github.com/kepoorhampond/irs',
|
|
author='Kepoor Hampond',
|
|
author_email='kepoorh@gmail.com',
|
|
license='GNU',
|
|
packages =['irs'],
|
|
install_requires=[
|
|
'bs4',
|
|
'mutagen',
|
|
'youtube-dl',
|
|
'requests',
|
|
],
|
|
entry_points = {
|
|
'console_scripts': ['irs = irs.__main__:main'],
|
|
},
|
|
)
|