irs/setup.py

24 lines
501 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name='irs',
version='0.1',
2016-12-11 00:26:11 +00:00
description='A music downloader that just gets metadata.',
2016-12-10 23:40:43 +00:00
url='http://github.com/kepoorhampond/irs',
author='Kepoor Hampond',
author_email='kepoorh@gmail.com',
license='GNU',
packages=['irs'],
install_requires=[
'youtube-dl',
'bs4',
'mutagen',
'requests',
],
entry_points={
'console_scripts': [
'irs = irs.__main__:main'
]
},
)