twitch-dl/setup.py

43 lines
1.1 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(
2022-08-18 07:36:56 +00:00
name="twitch-dl",
2022-08-18 07:42:11 +00:00
version="2.0.0",
2022-08-18 07:36:56 +00:00
description="Twitch downloader",
2020-04-10 14:42:35 +00:00
long_description=long_description.strip(),
2022-08-18 07:36:56 +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/"
},
2022-08-18 07:36:56 +00:00
keywords="twitch vod video download",
license="GPLv3",
2018-01-25 10:09:20 +00:00
classifiers=[
2022-08-18 07:36:56 +00:00
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
2018-01-25 10:09:20 +00:00
],
2021-01-14 21:08:13 +00:00
packages=find_packages(),
2022-08-18 07:36:56 +00:00
python_requires=">=3.7",
2018-01-25 10:09:20 +00:00
install_requires=[
2022-08-20 09:35:28 +00:00
"m3u8>=1.0.0,<4.0.0",
"httpx>=0.17.0,<1.0.0",
2018-01-25 10:09:20 +00:00
],
entry_points={
2022-08-18 07:36:56 +00:00
"console_scripts": [
"twitch-dl=twitchdl.console:main",
2018-01-25 10:09:20 +00:00
],
}
)