structocr 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {structocr-1.0.0 → structocr-1.0.1}/PKG-INFO +7 -4
- {structocr-1.0.0 → structocr-1.0.1}/README.md +1 -3
- {structocr-1.0.0 → structocr-1.0.1}/setup.py +15 -3
- {structocr-1.0.0 → structocr-1.0.1}/structocr.egg-info/PKG-INFO +7 -4
- {structocr-1.0.0 → structocr-1.0.1}/setup.cfg +0 -0
- {structocr-1.0.0 → structocr-1.0.1}/structocr/__init__.py +0 -0
- {structocr-1.0.0 → structocr-1.0.1}/structocr/client.py +0 -0
- {structocr-1.0.0 → structocr-1.0.1}/structocr.egg-info/SOURCES.txt +0 -0
- {structocr-1.0.0 → structocr-1.0.1}/structocr.egg-info/dependency_links.txt +0 -0
- {structocr-1.0.0 → structocr-1.0.1}/structocr.egg-info/requires.txt +0 -0
- {structocr-1.0.0 → structocr-1.0.1}/structocr.egg-info/top_level.txt +0 -0
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: structocr
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: The official Python SDK for StructOCR API - Passport, ID, and Driver License OCR.
|
|
5
|
-
Home-page: https://
|
|
5
|
+
Home-page: https://structocr.com
|
|
6
6
|
Author: StructOCR Team
|
|
7
7
|
Author-email: support@structocr.com
|
|
8
|
+
Project-URL: Homepage, https://structocr.com
|
|
9
|
+
Project-URL: Documentation, https://www.structocr.com/developers
|
|
10
|
+
Project-URL: Source, https://github.com/structocr/structocr-python
|
|
11
|
+
Project-URL: Tracker, https://github.com/structocr/structocr-python/issues
|
|
8
12
|
Classifier: Programming Language :: Python :: 3
|
|
9
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
14
|
Classifier: Operating System :: OS Independent
|
|
@@ -18,6 +22,7 @@ Dynamic: classifier
|
|
|
18
22
|
Dynamic: description
|
|
19
23
|
Dynamic: description-content-type
|
|
20
24
|
Dynamic: home-page
|
|
25
|
+
Dynamic: project-url
|
|
21
26
|
Dynamic: requires-dist
|
|
22
27
|
Dynamic: requires-python
|
|
23
28
|
Dynamic: summary
|
|
@@ -95,5 +100,3 @@ For full API documentation, response examples, and error codes, please visit the
|
|
|
95
100
|
## License
|
|
96
101
|
|
|
97
102
|
MIT License. See [LICENSE](https://www.google.com/search?q=LICENSE) for details.
|
|
98
|
-
|
|
99
|
-
```
|
|
@@ -70,6 +70,4 @@ For full API documentation, response examples, and error codes, please visit the
|
|
|
70
70
|
|
|
71
71
|
## License
|
|
72
72
|
|
|
73
|
-
MIT License. See [LICENSE](https://www.google.com/search?q=LICENSE) for details.
|
|
74
|
-
|
|
75
|
-
```
|
|
73
|
+
MIT License. See [LICENSE](https://www.google.com/search?q=LICENSE) for details.
|
|
@@ -2,13 +2,25 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="structocr",
|
|
5
|
-
version="1.0.
|
|
5
|
+
version="1.0.1",
|
|
6
6
|
description="The official Python SDK for StructOCR API - Passport, ID, and Driver License OCR.",
|
|
7
7
|
long_description=open("README.md").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
9
|
+
|
|
9
10
|
author="StructOCR Team",
|
|
10
11
|
author_email="support@structocr.com",
|
|
11
|
-
|
|
12
|
+
|
|
13
|
+
# 1. 这里通常放主页或者 GitHub 地址 (PyPI 标题下的链接)
|
|
14
|
+
url="https://structocr.com",
|
|
15
|
+
|
|
16
|
+
# 2. 这里定义侧边栏的具体链接 (Homepage, Documentation, Source 等)
|
|
17
|
+
project_urls={
|
|
18
|
+
"Homepage": "https://structocr.com",
|
|
19
|
+
"Documentation": "https://www.structocr.com/developers", # 假设你的文档在这里
|
|
20
|
+
"Source": "https://github.com/structocr/structocr-python",
|
|
21
|
+
"Tracker": "https://github.com/structocr/structocr-python/issues", # 问题追踪
|
|
22
|
+
},
|
|
23
|
+
|
|
12
24
|
packages=find_packages(),
|
|
13
25
|
install_requires=[
|
|
14
26
|
"requests>=2.25.0",
|
|
@@ -17,7 +29,7 @@ setup(
|
|
|
17
29
|
"Programming Language :: Python :: 3",
|
|
18
30
|
"License :: OSI Approved :: MIT License",
|
|
19
31
|
"Operating System :: OS Independent",
|
|
20
|
-
"Topic :: Scientific/Engineering :: Image Recognition",
|
|
32
|
+
"Topic :: Scientific/Engineering :: Image Recognition",
|
|
21
33
|
],
|
|
22
34
|
python_requires='>=3.6',
|
|
23
35
|
)
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: structocr
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: The official Python SDK for StructOCR API - Passport, ID, and Driver License OCR.
|
|
5
|
-
Home-page: https://
|
|
5
|
+
Home-page: https://structocr.com
|
|
6
6
|
Author: StructOCR Team
|
|
7
7
|
Author-email: support@structocr.com
|
|
8
|
+
Project-URL: Homepage, https://structocr.com
|
|
9
|
+
Project-URL: Documentation, https://www.structocr.com/developers
|
|
10
|
+
Project-URL: Source, https://github.com/structocr/structocr-python
|
|
11
|
+
Project-URL: Tracker, https://github.com/structocr/structocr-python/issues
|
|
8
12
|
Classifier: Programming Language :: Python :: 3
|
|
9
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
14
|
Classifier: Operating System :: OS Independent
|
|
@@ -18,6 +22,7 @@ Dynamic: classifier
|
|
|
18
22
|
Dynamic: description
|
|
19
23
|
Dynamic: description-content-type
|
|
20
24
|
Dynamic: home-page
|
|
25
|
+
Dynamic: project-url
|
|
21
26
|
Dynamic: requires-dist
|
|
22
27
|
Dynamic: requires-python
|
|
23
28
|
Dynamic: summary
|
|
@@ -95,5 +100,3 @@ For full API documentation, response examples, and error codes, please visit the
|
|
|
95
100
|
## License
|
|
96
101
|
|
|
97
102
|
MIT License. See [LICENSE](https://www.google.com/search?q=LICENSE) for details.
|
|
98
|
-
|
|
99
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|