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.

36 lines
1.0 KiB

# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
try:
from pip._internal.req import parse_requirements
from pip._internal.download import PipSession
except ImportError:
from pip.req import parse_requirements
from pip.download import PipSession
requirements = parse_requirements(
os.path.join(os.path.dirname(__file__), 'requirements.txt'),
session = PipSession()
)
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 = [str(requirement.req) for requirement in requirements],
entry_points = {
'console_scripts': [
'ncmdump=ncmdump.app:main'
]
}
)