-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.06 KB
/
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
33
34
35
36
from setuptools import setup
setup(
name='youtube-downloader-cli',
version='0.1.0',
description='This tool is used to parse and download the youtube videos.',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
keywords='youtube download parser video',
url='https://github.com/xingheng/youtube-downloader-cli',
author='Will Han',
author_email='xingheng.hax@qq.com',
license='unlicense',
python_requires='>=3',
packages=['youtube_downloader_cli'],
install_requires=[
'click>=7.0',
'configparser>=4.0',
'peewee>=3.11',
'requests>=2.22',
'youtube-dl>=2020.1.15',
'translate==3.6.1',
],
entry_points={
'console_scripts': ['youtube-downloader-cli=main'],
},
include_package_data=True,
zip_safe=False
)