forked from codezjx/netease-cloud-music-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 684 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 684 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='netease-cloud-music-dl',
version='0.2.0',
packages=find_packages(),
install_requires=[
'requests>=2.17.3',
'pycryptodomex',
'mutagen>=1.38.0',
'Pillow>=4.3.0',
],
entry_points={
'console_scripts': [
'ncm = ncm.start:main',
]
},
license='MIT',
author='codezjx',
author_email='code.zjx@gmail.com',
url='https://github.com/codezjx/netease-cloud-music-dl',
description='Netease cloud music song downloader, with full ID3 metadata!',
keywords=['ncm', 'netease', 'cloud-music', 'downloader'],
)