-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_rapid_table_det_paddle.py
56 lines (47 loc) · 1.61 KB
/
setup_rapid_table_det_paddle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- encoding: utf-8 -*-
# @Author: Jocker1212
# @Contact: [email protected]
import sys
from typing import List, Union
from pathlib import Path
from get_pypi_latest_version import GetPyPiLatestVersion
import setuptools
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 = "rapid_table_det_paddle"
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="table detection with original paddle model",
long_description="table detection with original paddle model",
author="jockerK",
author_email="[email protected]",
url="https://github.com/Joker1212/RapidTableDetection",
license="Apache-2.0",
install_requires=read_txt("requirements.txt"),
include_package_data=True,
packages=[MODULE_NAME, f"{MODULE_NAME}.models"],
keywords=["obj detection,ocr,table-recognition"],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8,<3.13",
)