2018-01-25 10:09:20 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2020-04-10 14:42:35 +00:00
|
|
|
long_description = """
|
|
|
|
Quickly download videos from twitch.tv.
|
|
|
|
|
|
|
|
Works simliarly to youtube-dl but downloads multiple VODs in parallel which
|
|
|
|
makes it faster.
|
|
|
|
"""
|
2018-01-25 10:09:20 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='twitch-dl',
|
2020-11-10 09:48:21 +00:00
|
|
|
version='1.13.0',
|
2018-01-25 10:09:20 +00:00
|
|
|
description='Twitch downloader',
|
2020-04-10 14:42:35 +00:00
|
|
|
long_description=long_description.strip(),
|
2018-01-25 10:09:20 +00:00
|
|
|
author='Ivan Habunek',
|
|
|
|
author_email='ivan@habunek.com',
|
|
|
|
url='https://github.com/ihabunek/twitch-dl/',
|
|
|
|
keywords='twitch vod video download',
|
|
|
|
license='GPLv3',
|
|
|
|
classifiers=[
|
2019-06-06 09:48:28 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2018-01-25 10:09:20 +00:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2019-04-30 11:47:16 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2018-01-25 10:09:20 +00:00
|
|
|
],
|
|
|
|
packages=['twitchdl'],
|
2019-02-20 14:44:58 +00:00
|
|
|
python_requires='>=3.5',
|
2018-01-25 10:09:20 +00:00
|
|
|
install_requires=[
|
2019-08-23 10:36:05 +00:00
|
|
|
"m3u8>=0.3.12,<0.4",
|
2018-01-25 10:09:20 +00:00
|
|
|
"requests>=2.13,<3.0",
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'twitch-dl=twitchdl.console:main',
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|