HowdenParser 3.1.1__tar.gz → 4.0.2__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.
@@ -241,7 +241,8 @@ class LlamaParser(BaseParser, name="llamaparser"):
241
241
  merge_tables_across_pages_in_markdown: bool,
242
242
  preserve_layout_alignment_across_pages: bool,
243
243
  hide_footers: bool,
244
- hide_headers: bool) -> None:
244
+ hide_headers: bool
245
+ ) -> None:
245
246
  logging.info("Initializing LlamaParser...")
246
247
  self.result_type = result_type
247
248
  self.mode = mode
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: HowdenParser
3
- Version: 3.1.1
3
+ Version: 4.0.2
4
4
  Summary: A simple configuration manager with Pydantic and JSON export.
5
5
  License: MIT
6
6
  Keywords: config,configuration,pydantic,json
@@ -11,6 +11,7 @@ Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
+ Provides-Extra: dev
14
15
  Requires-Dist: fitz (>=0.0.1.dev2,<0.0.2)
15
16
  Requires-Dist: hf-xet (>=1.1.7,<2.0.0)
16
17
  Requires-Dist: langchain (>=0.3.27,<0.4.0)
@@ -18,13 +19,12 @@ Requires-Dist: llama-parse (>=0.6.58,<0.7.0)
18
19
  Requires-Dist: mistralai (>=1.9.3,<2.0.0)
19
20
  Requires-Dist: pdf2image (>=1.17.0,<2.0.0)
20
21
  Requires-Dist: pypdf2 (>=3.0.1,<4.0.0)
22
+ Requires-Dist: toml (>=0.10.2,<0.11.0) ; extra == "dev"
23
+ Requires-Dist: tomli-w (>=1.2.0,<2.0.0) ; extra == "dev"
21
24
  Requires-Dist: torch (>=2.8.0,<3.0.0)
22
25
  Requires-Dist: torchaudio (>=2.8.0,<3.0.0)
23
26
  Requires-Dist: torchvision (>=0.23.0,<0.24.0)
24
27
  Requires-Dist: transformers (>=4.55.2,<5.0.0)
25
- Project-URL: Documentation, https://github.com/yourusername/config
26
- Project-URL: Homepage, https://github.com/yourusername/config
27
- Project-URL: Repository, https://github.com/yourusername/config
28
28
  Description-Content-Type: text/markdown
29
29
 
30
30
  # OCR & LLM Parser
@@ -0,0 +1,46 @@
1
+ [project]
2
+ name = "HowdenParser"
3
+ version = "4.0.2"
4
+ description = "A simple configuration manager with Pydantic and JSON export."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12,<3.14"
7
+ authors = [
8
+ { name = "JesperThoftIllemannJ", email = "jesper.jaeger@howdendanmark.dk" },
9
+ ]
10
+ keywords = [
11
+ "config",
12
+ "configuration",
13
+ "pydantic",
14
+ "json",
15
+ ]
16
+ homepage = "https://github.com/yourusername/config"
17
+ repository = "https://github.com/yourusername/config"
18
+ documentation = "https://github.com/yourusername/config"
19
+ dependencies = [
20
+ "mistralai (>=1.9.3,<2.0.0)",
21
+ "llama-parse (>=0.6.58,<0.7.0)",
22
+ "langchain (>=0.3.27,<0.4.0)",
23
+ "transformers (>=4.55.2,<5.0.0)",
24
+ "fitz (>=0.0.1.dev2,<0.0.2)",
25
+ "pypdf2 (>=3.0.1,<4.0.0)",
26
+ "pdf2image (>=1.17.0,<2.0.0)",
27
+ "torch (>=2.8.0,<3.0.0)",
28
+ "torchvision (>=0.23.0,<0.24.0)",
29
+ "torchaudio (>=2.8.0,<3.0.0)",
30
+ "hf-xet (>=1.1.7,<2.0.0)",
31
+ ]
32
+
33
+ [project.license]
34
+ text = "MIT"
35
+
36
+ [project.optional-dependencies]
37
+ dev = [
38
+ "toml (>=0.10.2,<0.11.0)",
39
+ "tomli-w (>=1.2.0,<2.0.0)",
40
+ ]
41
+
42
+ [build-system]
43
+ requires = [
44
+ "poetry-core>=2.0.0,<3.0.0",
45
+ ]
46
+ build-backend = "poetry.core.masonry.api"
@@ -1,39 +0,0 @@
1
- [project]
2
- name = "HowdenParser"
3
- description = ""
4
- readme = "README.md"
5
- requires-python = ">=3.12,<3.14"
6
- dependencies = [ "mistralai (>=1.9.3,<2.0.0)", "llama-parse (>=0.6.58,<0.7.0)", "langchain (>=0.3.27,<0.4.0)", "transformers (>=4.55.2,<5.0.0)", "fitz (>=0.0.1.dev2,<0.0.2)", "pypdf2 (>=3.0.1,<4.0.0)", "pdf2image (>=1.17.0,<2.0.0)", "torch (>=2.8.0,<3.0.0)", "torchvision (>=0.23.0,<0.24.0)", "torchaudio (>=2.8.0,<3.0.0)", "hf-xet (>=1.1.7,<2.0.0)",]
7
- [[project.authors]]
8
- name = "JesperThoftIllemannJ"
9
- email = "jesper.jaeger@howdendanmark.dk"
10
-
11
- [build-system]
12
- requires = [ "poetry-core>=2.0.0,<3.0.0",]
13
- build-backend = "poetry.core.masonry.api"
14
-
15
- [tool.poetry]
16
- name = "HowdenParser"
17
- version = "3.1.1"
18
- description = "A simple configuration manager with Pydantic and JSON export."
19
- authors = [ "JesperThoftIllemannJ <jesper.jaeger@howdendanmark.dk>",]
20
- readme = "README.md"
21
- license = "MIT"
22
- keywords = [ "config", "configuration", "pydantic", "json",]
23
- homepage = "https://github.com/yourusername/config"
24
- repository = "https://github.com/yourusername/config"
25
- documentation = "https://github.com/yourusername/config"
26
- [[tool.poetry.packages]]
27
- include = "HowdenParser"
28
-
29
- [tool.poetry.dependencies.torch]
30
- source = "pypi"
31
-
32
- [tool.poetry.dependencies.torchvision]
33
- source = "pypi"
34
-
35
- [tool.poetry.dependencies.torchaudio]
36
- source = "pypi"
37
-
38
- [tool.poetry.group.dev.dependencies]
39
- toml = "^0.10.2"
File without changes