mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
35 lines
959 B
Python
35 lines
959 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='twitch-dl',
|
|
version='1.3.1',
|
|
description='Twitch downloader',
|
|
long_description="Quickly download videos from Twitch",
|
|
author='Ivan Habunek',
|
|
author_email='ivan@habunek.com',
|
|
url='https://github.com/ihabunek/twitch-dl/',
|
|
keywords='twitch vod video download',
|
|
license='GPLv3',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
],
|
|
packages=['twitchdl'],
|
|
python_requires='>=3.5',
|
|
install_requires=[
|
|
"requests>=2.13,<3.0",
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'twitch-dl=twitchdl.console:main',
|
|
],
|
|
}
|
|
)
|