custom-layoutparser 0.1.0__tar.gz → 0.2.0__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.
- custom_layoutparser-0.2.0/PKG-INFO +10 -0
- custom_layoutparser-0.2.0/custom_layoutparser.egg-info/PKG-INFO +10 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/custom_layoutparser.egg-info/SOURCES.txt +1 -0
- custom_layoutparser-0.2.0/custom_layoutparser.egg-info/requires.txt +2 -0
- custom_layoutparser-0.2.0/setup.py +14 -0
- custom_layoutparser-0.1.0/PKG-INFO +0 -5
- custom_layoutparser-0.1.0/custom_layoutparser.egg-info/PKG-INFO +0 -5
- custom_layoutparser-0.1.0/setup.py +0 -9
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/custom_layoutparser.egg-info/dependency_links.txt +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/custom_layoutparser.egg-info/top_level.txt +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/base.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/errors.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/layout.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/layout_elements.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/utils.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/file_utils.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/io/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/io/basic.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/io/pdf.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/auto_layoutmodel.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/base_catalog.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/base_layoutmodel.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/detectron2/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/detectron2/catalog.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/detectron2/layoutmodel.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/effdet/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/effdet/catalog.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/effdet/layoutmodel.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/model_config.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/paddledetection/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/paddledetection/catalog.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/paddledetection/layoutmodel.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/ocr/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/ocr/base.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/ocr/gcv_agent.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/ocr/tesseract_agent.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/tools/__init__.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/tools/shape_operations.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/visualization.py +0 -0
- {custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/setup.cfg +0 -0
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/custom_layoutparser.egg-info/SOURCES.txt
RENAMED
|
@@ -2,6 +2,7 @@ setup.py
|
|
|
2
2
|
custom_layoutparser.egg-info/PKG-INFO
|
|
3
3
|
custom_layoutparser.egg-info/SOURCES.txt
|
|
4
4
|
custom_layoutparser.egg-info/dependency_links.txt
|
|
5
|
+
custom_layoutparser.egg-info/requires.txt
|
|
5
6
|
custom_layoutparser.egg-info/top_level.txt
|
|
6
7
|
layoutparser/__init__.py
|
|
7
8
|
layoutparser/file_utils.py
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Trong file setup.py của custom-layoutparser
|
|
2
|
+
from setuptools import setup, find_packages
|
|
3
|
+
|
|
4
|
+
setup(
|
|
5
|
+
name="custom-layoutparser",
|
|
6
|
+
version="0.2.0",
|
|
7
|
+
packages=find_packages(),
|
|
8
|
+
provides=["layoutparser"],
|
|
9
|
+
install_requires=[
|
|
10
|
+
"huggingface_hub",
|
|
11
|
+
"iopath"
|
|
12
|
+
],
|
|
13
|
+
python_requires='>=3.8',
|
|
14
|
+
)
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
|
|
3
|
-
setup(
|
|
4
|
-
name="custom-layoutparser", # Using a hyphen is better for pip installation
|
|
5
|
-
version="0.1.0", # Keeps it from being overwritten
|
|
6
|
-
packages=find_packages(), # Finds the 'layoutparser' folder automatically
|
|
7
|
-
install_requires=[], # Empty since you'll handle dependencies manually
|
|
8
|
-
python_requires='>=3.8',
|
|
9
|
-
)
|
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/custom_layoutparser.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/elements/layout_elements.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/auto_layoutmodel.py
RENAMED
|
File without changes
|
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/base_layoutmodel.py
RENAMED
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/detectron2/__init__.py
RENAMED
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/detectron2/catalog.py
RENAMED
|
File without changes
|
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/effdet/__init__.py
RENAMED
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/effdet/catalog.py
RENAMED
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/models/effdet/layoutmodel.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_layoutparser-0.1.0 → custom_layoutparser-0.2.0}/layoutparser/tools/shape_operations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|