From 37b6b7659c32e1aab7f374c7225f4233120d49b7 Mon Sep 17 00:00:00 2001 From: SWHL Date: Thu, 12 Sep 2024 21:03:54 +0800 Subject: [PATCH] chore: Test unit testing --- setup_table_cls.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup_table_cls.py b/setup_table_cls.py index 246166b..0c62724 100644 --- a/setup_table_cls.py +++ b/setup_table_cls.py @@ -2,11 +2,11 @@ # @Author: SWHL # @Contact: liekkaskono@163.com import sys -from typing import List, Union from pathlib import Path -from get_pypi_latest_version import GetPyPiLatestVersion +from typing import List, Union import setuptools +from get_pypi_latest_version import GetPyPiLatestVersion def read_txt(txt_path: Union[Path, str]) -> List[str]: @@ -39,8 +39,8 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]: description="A table classifier for further table rec", long_description="A table classifier that distinguishes between wired and wireless tables", long_description_content_type="text/markdown", - author="SWHL", - author_email="liekkaskono@163.com", + author="jockerK", + author_email=" xinyijianggo@gmail.com", url="https://github.com/RapidAI/TableStructureRec", license="Apache-2.0", install_requires=read_txt("requirements.txt"),