forked from feeluown/FeelUOwn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (55 loc) · 1.7 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
#!/usr/bin/env python3
from setuptools import setup
import feeluown
setup(
name='feeluown',
version=feeluown.__version__,
description='*nix music player',
author='Cosven',
author_email='[email protected]',
packages=[
'feeluown',
'feeluown.widgets',
'feeluown.widgets.statusline_items',
'feeluown.uimodels',
'fuocore',
'fuocore.cmds',
'fuocore.protocol',
],
py_modules=['mpv'],
package_data={
'': ['*.qss', '*.png', '../icons/*.png', 'themes/*.qss']
},
url='https://github.com/cosven/FeelUOwn',
keywords=['media', 'player', 'application', 'PyQt5', 'Python 3'],
classifiers=(
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Environment :: X11 Applications :: Qt',
),
# FIXME depends on PyQt5
install_requires=[
'quamash>=0.5.5',
'janus',
'requests',
'pyopengl',
],
extras_require={
'battery': ['fuo-local>=0.1.1',
'fuo-xiami>=0.1.2',
'fuo-netease',
'fuo-qqmusic>=0.1.2'],
'macOS': ['pyobjc-framework-Cocoa', 'pyobjc-framework-Quartz']
},
tests_require=['pytest', 'pytest-cov', 'pytest-asyncio'],
entry_points={
'console_scripts': [
"feeluown=feeluown.__main__:main",
"fuo=feeluown.__main__:main",
"feeluown-genicon=feeluown.install:generate_icon",
# "feeluown-update=feeluown.install:update"
]
},
)