forked from feeluown/FeelUOwn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (42 loc) · 1.29 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
#!/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.libs',
'feeluown.libs.widgets',
'feeluown.plugins.neteasemusic',
],
package_data={
'': ['themes/*.colorscheme', '*.png']
},
url='https://github.com/cosven/FeelUOwn',
keywords=['media', 'player', 'application', 'PyQt5', 'python3'],
classifiers=(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Environment :: X11 Applications :: Qt',
),
# FIXME depends on PyQt5 , but cannot put that in a setup.py
install_requires=[
'quamash>=0.5.5',
'pycrypto',
'requests',
'beautifulsoup4',
],
entry_points={
'console_scripts': [
"feeluown=feeluown.__main__:main",
"feeluown-install-dev=feeluown.install:install_sys_dep",
"feeluown-genicon=feeluown.install:generate_icon",
"feeluown-update=feeluown.install:update"
]
},
)