forked from mos9527/pyncm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 839 Bytes
/
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
import setuptools, pyncm
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyncm",
version=pyncm.__version__,
author="greats3an",
author_email="greats3an@gmail.com",
description="NeteaseCloudMusic APIs for Python 3.x 适用于 Python 3 的网易云音乐 API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/greats3an/pyncm",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=["requests"],
entry_points={"console_scripts": ["pyncm=pyncm.__main__:__main__"]},
python_requires=">=3.6",
)