twitch-dl/setup.py

45 lines
1.2 KiB
Python
Raw Normal View History

2018-01-25 10:09:20 +00:00
#!/usr/bin/env python
2021-01-14 21:08:13 +00:00
from setuptools import setup, find_packages
2018-01-25 10:09:20 +00:00
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',
2022-06-25 09:38:27 +00:00
version='1.22.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/',
2022-02-23 20:54:56 +00:00
project_urls={
"Documentation": "https://twitch-dl.bezdomni.net/"
},
2018-01-25 10:09:20 +00:00
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
],
2021-01-14 21:08:13 +00:00
packages=find_packages(),
2019-02-20 14:44:58 +00:00
python_requires='>=3.5',
2018-01-25 10:09:20 +00:00
install_requires=[
2022-01-19 07:01:18 +00:00
"m3u8>=1.0.0,<2.0.0",
2018-01-25 10:09:20 +00:00
"requests>=2.13,<3.0",
],
entry_points={
'console_scripts': [
'twitch-dl=twitchdl.console:main',
],
}
)