irs/setup.py

24 lines
576 B
Python
Raw Normal View History

2016-12-10 23:40:43 +00:00
from setuptools import setup
setup(
name = 'irs',
2017-10-19 15:42:24 +00:00
version = '6.7.4',
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',
2017-10-10 15:18:32 +00:00
'ydl-binaries',
'splinter'
2016-12-10 23:40:43 +00:00
],
entry_points = {
'console_scripts': ['irs = irs.cli:main'],
2016-12-10 23:40:43 +00:00
},
)