Ai
1 Star 0 Fork 0

RapidAI/TableStructureRec

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup_wired.py 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
无题 提交于 2025-03-19 22:03 +08:00 . chore: add teds score & fix setup package
# -*- encoding: utf-8 -*-
# @Author: SWHL
# @Contact: liekkaskono@163.com
import sys
from typing import List, Union
from pathlib import Path
from get_pypi_latest_version import GetPyPiLatestVersion
import setuptools
def get_readme() -> str:
root_dir = Path(__file__).resolve().parent
readme_path = str(root_dir / "docs" / "doc_wired_table_rec.md")
with open(readme_path, "r", encoding="utf-8") as f:
readme = f.read()
return readme
def read_txt(txt_path: Union[Path, str]) -> List[str]:
with open(txt_path, "r", encoding="utf-8") as f:
data = [v.rstrip("\n") for v in f]
return data
MODULE_NAME = "wired_table_rec"
obtainer = GetPyPiLatestVersion()
try:
latest_version = obtainer(MODULE_NAME)
except Exception:
latest_version = "0.0.0"
VERSION_NUM = obtainer.version_add_one(latest_version)
if len(sys.argv) > 2:
match_str = " ".join(sys.argv[2:])
matched_versions = obtainer.extract_version(match_str)
if matched_versions:
VERSION_NUM = matched_versions
sys.argv = sys.argv[:2]
setuptools.setup(
name=MODULE_NAME,
version=VERSION_NUM,
platforms="Any",
description="Wired Table Recognition",
long_description=get_readme(),
long_description_content_type="text/markdown",
author="SWHL",
author_email="liekkaskono@163.com",
url="https://github.com/RapidAI/TableStructureRec",
license="Apache-2.0",
install_requires=read_txt("requirements.txt"),
include_package_data=True,
packages=[MODULE_NAME, f"{MODULE_NAME}.utils"],
keywords=["tsr,ocr,table-recognition"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.13",
entry_points={
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/RapidAI/TableStructureRec.git
git@gitee.com:RapidAI/TableStructureRec.git
RapidAI
TableStructureRec
TableStructureRec
main

搜索帮助