-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
49 lines (45 loc) · 1.16 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='fuo_netease',
version='1.0.3',
description='feeluown netease plugin',
author='Cosven',
author_email='[email protected]',
packages=find_packages(exclude=('tests*',)),
package_data={
'': ['assets/*.svg',
]
},
url='https://github.com/feeluown/feeluown-netease',
keywords=['feeluown', 'plugin', 'netease'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],
install_requires=[
'feeluown>=4.0a0',
'beautifulsoup4',
'pycryptodome',
'marshmallow>=3.0',
'requests',
'mutagen>=1.37',
],
extras_require={
'dev': [
# lint
'flake8',
# unittest
'pytest>=5.4.0',
'pytest-cov',
],
},
entry_points={
'fuo.plugins_v1': [
'netease = fuo_netease',
]
},
)