2 Star 0 Fork 0

mirrors_Meituan-Dianping / lyrebird-api-coverage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup,find_packages
import os
import runpy
here = os.path.abspath(os.path.dirname(__file__))
VERSION = runpy.run_path(
os.path.join(here, 'lyrebird_api_coverage', 'version.py')
)['VERSION']
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='lyrebird-api-coverage',
version=VERSION,
packages=find_packages(),
url='https://github.com/meituan/lyrebird-api-coverage',
author='HBQA',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
),
entry_points={
'lyrebird_plugin': [
'lyrebird_api_coverage = lyrebird_api_coverage.manifest'
]
},
install_requires=[
'lyrebird>=2.10.3',
'jsonschema'
],
extras_require={
'dev': [
"autopep8",
"pylint",
"pytest"
]
}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_Meituan-Dianping/lyrebird-api-coverage.git
git@gitee.com:mirrors_Meituan-Dianping/lyrebird-api-coverage.git
mirrors_Meituan-Dianping
lyrebird-api-coverage
lyrebird-api-coverage
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891