-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
26 lines (24 loc) · 790 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
"""YouTubeDownloader - setup.py"""
import setuptools
LONG_DESC = open('README.md').read()
setuptools.setup(
name="YouTubeDownloader",
version="1.0",
author="Jodagito",
description="A simple to use youtube playlists/videos/audios downloader",
long_description_content_type="text/markdown",
long_description=LONG_DESC,
url="https://github.com/Jodagito/YoutubeDownloader",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": [
"YouTubeDownloader=YouTubeDownloader:main"]},
python_requires=">=3.6",
install_requires=[
'pytube3>=9.5.13'
]
)