twitch-dl/setup.py

35 lines
959 B
Python
Raw Normal View History

2018-01-25 10:09:20 +00:00
#!/usr/bin/env python
from setuptools import setup
setup(
name='twitch-dl',
2019-07-05 11:15:59 +00:00
version='1.2.0',
2018-01-25 10:09:20 +00:00
description='Twitch downloader',
2019-04-30 11:47:16 +00:00
long_description="Quickly download videos from Twitch",
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=[
"requests>=2.13,<3.0",
],
entry_points={
'console_scripts': [
'twitch-dl=twitchdl.console:main',
],
}
)