1 Star 0 Fork 7

陈志群/阿里云自动打轴(音文对齐)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.16 KB
一键复制 编辑 原始数据 按行查看 历史
淳帅二代 提交于 2021-02-23 23:43 . 添加繁简转换库
# coding=utf-8
# 程序名
#
# 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 Zhao
from 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='ali-audio-text-sync',
version='0.1.0',
description='使用阿里云服务的录音文件识别,将音频识别为 srt 字幕',
author='Haujet Zhao',
author_email='haujetzhao@qq.com',
url='https://github.com/HaujetZhao/***',
license='MPL-2.0 License',
# 依赖包
install_requires=['srt',
'aliyun-python-sdk-core',
'oss2',
'icecream',
'zhconv'
],
# 含有 py 文件的文件夹(源码文件夹)
packages=['ali_audio_text_sync'
],
# 每个本地包中需要包含的另外的文件
package_data={
'src': ['*.md']
},
# 安装后,命令行使用的入口
entry_points={ # Options: console_scripts gui_scripts
'console_scripts': [
'ali-audio-text-sync=ali_audio_text_sync.__main__:main',
'AliAudioTextSync=ali_audio_text_sync.__main__:main',
'阿里云自动打轴=ali_audio_text_sync.__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',
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/czqhurricnae/ali-audio-text-sync.git
git@gitee.com:czqhurricnae/ali-audio-text-sync.git
czqhurricnae
ali-audio-text-sync
阿里云自动打轴(音文对齐)
master

搜索帮助