forked from importerror/pms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·61 lines (46 loc) · 1.58 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
#!/usr/bin/python
# Pafy setup script
from distutils.core import setup
setup(
name="Poor-Mans-Spotify",
version='0.08',
description="Search, Stream and Download MP3",
keywords=["MP3", "music", "audio", "search", "stream", "download"],
author="nagev",
author_email="np1nagev@gmail.com",
url="http://github.com/np1/pms/",
download_url="https://github.com/np1/pms/tarball/master",
scripts=['pms'],
package_data={"": ["LICENSE", "README.md"]},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Internet :: WWW/HTTP"],
long_description="""\
Description
-----------
This is a console based application and requires mplayer to be installed to
perform the streaming. It's interactive so no arguments are needed, although
you can optionally add the search term as an argument. Eg: `pms beethovens 5th`
To install:
::
sudo pip install Poor-Mans-Spotify
To run:
::
pms
Screenshot
----------
.. image:: http://i.imgur.com/Oqyz5vk.png
"""
)