forked from RapidAI/RapidOCR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_onnxruntime.py
71 lines (62 loc) · 2.15 KB
/
setup_onnxruntime.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- encoding: utf-8 -*-
# @Author: SWHL
# @Contact: [email protected]
from pathlib import Path
import setuptools
import subprocess
def get_latest_version(package_name):
output = subprocess.run(["pip", "index", "versions", package_name],
capture_output=True)
output = output.stdout.decode('utf-8')
if output:
output = list(filter(lambda x: len(x) > 0, output.split('\n')))
latest_version = output[0].split(' ')[-1][1:-1]
return latest_version
else:
return None
def version_add_one(version, add_loc=-1):
if version:
version_list = version.split('.')
mini_version = str(int(version_list[add_loc]) + 1)
version_list[add_loc] = mini_version
new_version = '.'.join(version_list)
return new_version
else:
return None
def get_readme():
root_dir = Path(__file__).resolve().parent.parent
readme_path = str(root_dir / 'docs' / 'doc_whl_rapidocr_ort.md')
print(readme_path)
with open(readme_path, 'r') as f:
readme = f.read()
return readme
module_name = 'rapidocr_onnxruntime'
latest_version = get_latest_version(module_name)
version_num = version_add_one(latest_version)
setuptools.setup(
name=module_name,
version=version_num,
platforms="Any",
description="RapidOCR",
long_description=get_readme(),
long_description_content_type='text/markdown',
author="SWHL",
author_email="[email protected]",
url="https://github.com/RapidAI/RapidOCR",
license='Apache-2.0',
include_package_data=True,
install_requires=["pyclipper>=1.2.1", "onnxruntime>=1.7.0",
"opencv_python>=4.5.1.48", "numpy>=1.19.3",
"six>=1.15.0", "Shapely>=1.7.1"],
package_dir={'': module_name},
packages=setuptools.find_packages(where=module_name),
keywords=[
'ocr text_detection text_recognition db onnxruntime paddleocr openvino'
],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)