python版本网易云音乐ncm文件格式转换(mirror from https://github.com/nondanee/ncmdump)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
683 B
24 lines
683 B
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = 'ncmdump',
|
|
version = '0.1.0',
|
|
description = 'netease cloud music copyright protection file dump',
|
|
url = 'http://github.com/nondanee/ncmdump',
|
|
author = 'nondanee',
|
|
author_email = 'iminezn5656@outlook.com',
|
|
license = 'MIT',
|
|
keywords = ('ncm', 'netease cloud music'),
|
|
packages = find_packages(),
|
|
platforms = 'any',
|
|
zip_safe = False,
|
|
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
|
|
install_requires = ['pycryptodome', 'mutagen'],
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'ncmdump=ncmdump.app:main'
|
|
]
|
|
}
|
|
)
|