This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
62 lines (57 loc) · 1.76 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from os import path
from setuptools import setup, find_packages
from mediakit import info
current_dirname = path.dirname(path.abspath(__file__))
readme_path = path.join(current_dirname, "README.md")
with open(readme_path, encoding="utf-8") as readme:
long_description = readme.read()
setup(
name=info.name.lower(),
version=info.version,
description=info.description,
long_description=long_description,
long_description_content_type="text/markdown",
author=info.author,
author_email=info.author_email,
url=info.url,
download_url=info.download_url,
license=info.license,
packages=find_packages(),
include_package_data=True,
keywords=[
"youtube",
"media",
"video",
"audio",
"download",
"convert",
"command line",
"cli",
],
python_requires=">=3.6",
install_requires=[
"pytube>=11.0.2",
"clint",
"imageio",
"imageio-ffmpeg",
"colorama",
"wheel",
],
entry_points={"console_scripts": ["mediakit=mediakit:main"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
],
)