forked from importerror/pms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·47 lines (40 loc) · 1.4 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
#!/usr/bin/python
""" setup.py for mps.
https://np1.github.com/mps
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open("README.rst").read()
license = open("LICENSE").read()
setup(
name="mps",
version="0.20.10",
description="Search, Stream and Download MP3",
keywords=["MP3", "music", "audio", "search", "stream", "download"],
author="nagev",
license=license,
long_description=readme,
author_email="[email protected]",
url="http://github.com/np1/mps/",
download_url="https://github.com/np1/mps/tarball/master",
scripts=['mps'],
package_data={"": ["LICENSE", "README.rst"]},
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",
"Programming Language :: Python :: 3.4",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Internet :: WWW/HTTP"],
)