1 Star 0 Fork 1

tianya9876/music-dl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
HJK 提交于 2019-09-15 15:49 . update setup.py
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
@author: HJK
@file: setup.py
@time: 2019-01-26
打包配置文件
"""
import os
import sys
import setuptools
# 'setup.py publish' shortcut.
if sys.argv[-1] == "publish":
os.system("rm -rf dist")
os.system("python setup.py sdist bdist_wheel")
os.system("twine upload dist/*")
sys.exit()
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, "music_dl", "__version__.py"), "r", encoding="utf-8") as f:
exec(f.read(), about)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name=about["__title__"],
version=about["__version__"],
description=about["__description__"],
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
license=about["__license__"],
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
test_suite="tests",
entry_points={"console_scripts": ["music-dl = music_dl.__main__:main"]},
install_requires=["requests", "click", "pycryptodome", "prettytable"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tianya9876/music-dl.git
[email protected]:tianya9876/music-dl.git
tianya9876
music-dl
music-dl
master

搜索帮助