-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 807 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 807 Bytes
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
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert('README.md','rst')
except:
description=''
setup(name='PyLyrics',
version="1.1.0",
description='Pythonic Implementation of lyrics.wikia.com',
long_description=description,
author="Pradipta Bora",
author_email='pradd@outlook.com',
license='MIT',
packages=['PyLyrics'],
url="http://github.com/geekpradd/PyLyrics",
install_requires=[
'beautifulsoup4','requests',],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Internet",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
zip_safe=False)