forked from ihabunek/twitch-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 883 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
setup(
name='twitch-dl',
version='0.1.0',
description='Twitch downloader',
long_description="A simple script for downloading videos from Twitch",
author='Ivan Habunek',
author_email='[email protected]',
url='https://github.com/ihabunek/twitch-dl/',
keywords='twitch vod video download',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=['twitchdl'],
install_requires=[
"requests>=2.13,<3.0",
],
entry_points={
'console_scripts': [
'twitch-dl=twitchdl.console:main',
],
}
)