2016-12-10 23:40:43 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2017-04-22 02:15:56 +00:00
|
|
|
name = 'irs',
|
2017-10-19 15:42:24 +00:00
|
|
|
version = '6.7.4',
|
2017-04-22 02:15:56 +00:00
|
|
|
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'],
|
2017-06-10 19:16:51 +00:00
|
|
|
install_requires = [
|
2017-04-22 02:15:56 +00:00
|
|
|
'bs4',
|
|
|
|
'mutagen',
|
|
|
|
'requests',
|
|
|
|
'spotipy',
|
2017-10-10 15:18:32 +00:00
|
|
|
'ydl-binaries',
|
|
|
|
'splinter'
|
2016-12-10 23:40:43 +00:00
|
|
|
],
|
2016-12-11 06:56:50 +00:00
|
|
|
entry_points = {
|
2017-04-22 02:15:56 +00:00
|
|
|
'console_scripts': ['irs = irs.cli:main'],
|
2016-12-10 23:40:43 +00:00
|
|
|
},
|
|
|
|
)
|