-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
31 lines (29 loc) · 1.06 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
from setuptools import setup
with open("README.rst", "rb") as f:
long_descr = f.read().decode('utf-8')
setup(
name = "getlyrics",
packages = ["getlyrics"],
install_requires = ["beautifulsoup4"],
entry_points = {
"console_scripts": ['getlyrics = getlyrics.getlyrics:main']
},
version = "2.1.2",
description = "A Python program which gets the lyrics for a song and outputs them to stdout",
long_description = long_descr,
author = "Steven Smith",
author_email = "[email protected]",
license = "MIT",
url = "https://blha303.github.io/getlyrics/",
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Topic :: Multimedia :: Sound/Audio"
]
)