-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (28 loc) · 947 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
33
34
35
36
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme_text = readme_file.read()
setup_args = dict(
entry_points = {
'console_scripts': ['youtube-download-cli=youtube_download_cli.command_line:main'],
},
name='youtube-download-cli',
version='0.0.0.3',
description="",
keywords=[],
long_description=readme_text,
long_description_content_type="text/markdown",
license='Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License',
packages=find_packages(),
author="Leo Ertuna",
author_email="leo.ertuna@gmail.com",
url="https://github.com/jpleorx/youtube-download-cli",
download_url='https://pypi.org/project/youtube-download-cli/'
)
install_requires = [
'argparse',
'colorama',
'pytube',
'moviepy'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)