-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (47 loc) · 1.75 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
from setuptools import setup, find_packages
# from ncmlistdownloader.common.global_args import CORE_VERSION_SETUP
setup(
classifiers=[
# 发展时期
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
"Development Status :: 5 - Production/Stable",
# 开发的目标用户
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
# 属于什么类型
"Topic :: Communications :: File Sharing",
"Topic :: Internet",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: CD Audio",
"Topic :: Multimedia :: Sound/Audio :: Editors",
# 许可证信息
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
# 目标 Python 版本
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
name="ncmlistdownloader",
version="1.3.2.240707",
description="获取网易云音乐歌单数据,下载音乐,主动添加元信息。",
author="CooooldWind_",
url="https://gitee.com/Cooooldwind/163ListDownloader_NexT",
packages=find_packages(),
install_requires=[
"pycryptodome",
"pillow",
"mutagen",
"requests",
"pyqrcode",
],
entry_points={
"console_scripts": ["ncmlistdownloader = ncmlistdownloader.__init__:main"]
},
)