forked from mps-youtube/pafy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·57 lines (51 loc) · 1.95 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
#!/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__
setup(
name='pafy',
packages=['pafy'],
scripts=['scripts/ytdl'],
version=__version__,
description="Retrieve YouTube content and metadata",
keywords=["pafy", "API", "YouTube", "youtube", "download", "video"],
author="np1",
author_email="[email protected]",
url="https://github.com/mps-youtube/pafy/",
download_url="https://github.com/mps-youtube/pafy/tags",
extras_require={
'youtube-dl-backend': ["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 :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"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()
)