5 Star 32 Fork 15

MindSpore Lab/mindocr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
jianyunchao 提交于 2023-06-09 11:30 +08:00 . Fix static inspection issues. (#365)
#!/usr/bin/env python
from setuptools import find_packages, setup
exec(open("mindocr/version.py").read())
def read_requirements(fps):
reqs = []
for fp in fps:
with open(fp) as f:
reqs.extend(f.readlines())
return reqs
setup(
name="mindocr",
author="MindSpore Ecosystem",
author_email="mindspore-ecosystem@example.com",
url="https://github.com/mindspore-lab/mindocr",
project_urls={
"Sources": "https://github.com/mindspore-lab/mindocr",
"Issue Tracker": "https://github.com/mindspore-lab/mindocr/issues",
},
description="A toolbox of OCR models and algorithms based on MindSpore.",
license="Apache Software License 2.0",
include_package_data=True,
packages=find_packages(include=["mindocr", "mindocr.*"]),
install_requires=read_requirements(["requirements.txt"]),
python_requires=">=3.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
test_suite="tests",
tests_require=[
"pytest",
],
version=__version__,
zip_safe=False,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mindspore-lab/mindocr.git
git@gitee.com:mindspore-lab/mindocr.git
mindspore-lab
mindocr
mindocr
main

搜索帮助