-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
89 lines (80 loc) · 2.47 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
with open('docs/usage.rst') as usage_file:
usage = usage_file.read()
requirements = [
'Click>=6.0',
'lxml',
'beautifulsoup4',
'urllib3',
'urllib3[secure]',
'pysocks',
'gevent',
'stem',
'certifi',
]
setup_requirements = [
'pytest'
# TODO(SekouD): put setup requirements (distutils extensions, etc.) here
]
test_requirements = [
'Sphinx',
'docutils',
'pytest',
'pytest-cov',
'Click>=6.0',
'lxml',
'beautifulsoup4',
'requests',
'requests[socks]',
'urllib3'
'PySocks',
'gevent',
'stem'
]
setup(
name='lyricsmaster',
version='2.8.1',
description="LyricsMaster is a library for downloading lyrics from multiple lyrics providers. LyricWiki, AzLyrics, Genius, Lyrics007, MusixMatch and other lyrics provider are available",
long_description=readme + '\n\n' + usage + '\n\n' + history,
author="SekouD",
author_email='[email protected]',
url='https://github.com/SekouD/lyricsmaster',
packages=find_packages(include=['lyricsmaster']),
entry_points={
'console_scripts': [
'lyricsmaster=lyricsmaster.cli:main'
]
},
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='lyricsmaster lyrics LyricWiki Lyrics Wikia Lyrics007 AzLyrics Genius MusixMatch Tor',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Communications',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements,
setup_requires=setup_requirements,
)