forked from galihmrd/pafy-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·63 lines (55 loc) · 2.11 KB
/
setup.py
File metadata and controls
executable file
·63 lines (55 loc) · 2.11 KB
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
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setup.py for pafy.
https://github.com/mps-youtube/pafy
python setup.py sdist bdist_wheel
"""
from setuptools import setup
from pafy import __version__
with open("requirements.txt", encoding="utf-8") as r:
requires = [i.strip() for i in r]
setup(
name="pafy-fork",
packages=["pafy"],
scripts=["scripts/ytdl"],
version=__version__,
description="Retrieve YouTube content and metadata",
keywords=["pafy", "API", "YouTube", "youtube", "download", "video"],
author="np1",
author_email="np1nagev@gmail.com",
url="https://github.com/galihmrd/pafy/",
download_url="https://github.com/galihmrd/pafy/tags",
extras_require={
"youtube-dl-backend": ["yt-dlp", "youtube-dl"],
},
package_data={"": ["LICENSE", "README.rst", "CHANGELOG", "AUTHORS"]},
include_package_data=True,
license="LGPLv3",
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 " "(LGPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS 9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows XP",
"Operating System :: Microsoft :: Windows :: Windows Vista",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Utilities",
"Topic :: Multimedia :: Video",
"Topic :: Internet :: WWW/HTTP",
],
long_description=open("README.rst").read(),
python_requires="~=3.7",
install_requires=requires,
)