forked from ok100/lyvi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 763 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 763 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
27
28
29
from setuptools import setup
with open('README.rst') as readme_file:
long_description = readme_file.read()
setup(
name='Lyvi',
version='2.0-git',
description='Command-line lyrics (and more!) viewer',
long_description=long_description,
url='http://ok100.github.io/lyvi/',
license='WTFPL',
packages=['lyvi', 'lyvi.players'],
entry_points={
'console_scripts': [
'lyvi = lyvi:main'
]
},
install_requires=[
'Pillow',
'plyr',
'urwid',
'psutil'
],
package_data={'lyvi': ['data/pianobar/*']},
data_files=[('share/man/man1', ['doc/lyvi.1'])]
)
print('To enable MPRIS support, please make sure to have python-dbus and python-gobject modules installed.')