-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 897 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 897 Bytes
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
from setuptools import setup
version = '0.3.0'
setup(
name='video_funnel',
packages=['video_funnel'],
version=version,
description='Use multiple connections to request the video, then feed the combined data to the player.',
author='Chen Shuaimin',
author_email='chen_shuaimin@outlook.com',
url='https://github.com/cshuaimin/video-funnel',
python_requires='>=3.6',
install_requires=['aiohttp == 3.13.3', 'argparse', 'tqdm', 'browsercookie', 'pycookiecheat'],
package_data={'video_funnel': ['index.html']},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
license="MIT",
keywords='Online multi-threaded video play',
entry_points={
'console_scripts': [
'vf = video_funnel.__main__:main'
]
}
)