# 程序名## This Source Code Form is subject to the terms of the Mozilla Public# License, v. 2.0. If a copy of the MPL was not distributed with this# file, You can obtain one at https://mozilla.org/MPL/2.0/.## Copyright (c) 2021 Haujet Zhaofrom setuptools import setup# python setup.py build sdist clean install & audio-video-resync# twine upload -u USERNAME -p PASSWORD "dist/audio-video-resync-0.5.0.tar.gz"setup(name='程序名',version='0.1.0',description='描述',author='Haujet Zhao',author_email='haujetzhao@qq.com',url='https://github.com/HaujetZhao/***',license='MPL-2.0 License',# 依赖包install_requires=[],# 含有 py 文件的文件夹(源码文件夹)packages=['src'],# 每个本地包中需要包含的另外的文件package_data={'src': ['*.md']},# 安装后,命令行使用的入口entry_points={ # Options: console_scripts gui_scripts'console_scripts': ['src=src.__main__:main']},platforms=["all"],classifiers=[# Optional# How mature is this project? Common values are# 3 - Alpha# 4 - Beta# 5 - Production/Stable'Development Status :: 4 - Beta',# Pick your license as you wish'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',# Specify the Python versions you support here. In particular, ensure# that you indicate you support Python 3. These classifiers are *not*# checked by 'pip install'. See instead 'python_requires' below.'Programming Language :: Python :: 3'],# python 版本要求python_requires='>=3',)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。