forked from mps-youtube/yewtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·56 lines (50 loc) · 1.99 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
#!/usr/bin/python
""" setup.py for mps-youtube.
https://np1.github.com/mps-youtube
python setup.py sdist bdist_wheel
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="mps-youtube",
version="0.2.1",
description="Terminal based YouTube player and downloader",
keywords=["video", "music", "audio", "youtube", "stream", "download"],
author="nagev",
author_email="np1nagev@gmail.com",
url="http://github.com/np1/mps-youtube",
download_url="https://github.com/np1/mps-youtube/tarball/master",
packages=['mps_youtube'],
entry_points=dict(console_scripts=['mpsyt = mps_youtube:main.main']),
install_requires=['Pafy >= 0.3.72'],
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
classifiers=[
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Video",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"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",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
long_description=open("README.rst").read()
)