chunkr-ai 0.3.4__tar.gz → 0.3.5__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.
Files changed (25) hide show
  1. {chunkr_ai-0.3.4/src/chunkr_ai.egg-info → chunkr_ai-0.3.5}/PKG-INFO +2 -2
  2. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/pyproject.toml +2 -2
  3. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/__init__.py +4 -1
  4. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5/src/chunkr_ai.egg-info}/PKG-INFO +2 -2
  5. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/LICENSE +0 -0
  6. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/README.md +0 -0
  7. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/setup.cfg +0 -0
  8. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/__init__.py +0 -0
  9. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/auth.py +0 -0
  10. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/chunkr.py +0 -0
  11. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/chunkr_base.py +0 -0
  12. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/configuration.py +0 -0
  13. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/decorators.py +0 -0
  14. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/misc.py +0 -0
  15. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/protocol.py +0 -0
  16. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/api/task_response.py +0 -0
  17. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai/models.py +0 -0
  18. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai.egg-info/SOURCES.txt +0 -0
  19. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai.egg-info/dependency_links.txt +0 -0
  20. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai.egg-info/requires.txt +1 -1
  21. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/src/chunkr_ai.egg-info/top_level.txt +0 -0
  22. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/tests/test_chunkr.py +0 -0
  23. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/tests/test_excel.py +0 -0
  24. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/tests/test_file_handling.py +0 -0
  25. {chunkr_ai-0.3.4 → chunkr_ai-0.3.5}/tests/test_pages.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chunkr-ai
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: Python client for Chunkr: open source document intelligence
5
5
  Author-email: Ishaan Kapoor <ishaan@lumina.sh>
6
6
  License: MIT License
@@ -29,7 +29,6 @@ Requires-Python: >=3.10
29
29
  Description-Content-Type: text/markdown
30
30
  License-File: LICENSE
31
31
  Requires-Dist: httpx>=0.25.0
32
- Requires-Dist: matplotlib>=3.10.3
33
32
  Requires-Dist: nest-asyncio>=1.6.0
34
33
  Requires-Dist: pillow>=10.0.0
35
34
  Requires-Dist: pydantic>=2.0.0
@@ -40,6 +39,7 @@ Requires-Dist: pytest>=7.0.0; extra == "test"
40
39
  Requires-Dist: pytest-xdist>=3.0.0; extra == "test"
41
40
  Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
42
41
  Requires-Dist: ruff>=0.9.3; extra == "test"
42
+ Requires-Dist: matplotlib>=3.10.3; extra == "test"
43
43
  Dynamic: license-file
44
44
 
45
45
  # Chunkr Python Client
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "chunkr-ai"
7
- version = "0.3.4"
7
+ version = "0.3.5"
8
8
  authors = [{ "name" = "Ishaan Kapoor", "email" = "ishaan@lumina.sh" }]
9
9
  description = "Python client for Chunkr: open source document intelligence"
10
10
  readme = "README.md"
@@ -13,7 +13,6 @@ urls = { Homepage = "https://chunkr.ai" }
13
13
  requires-python = ">=3.10"
14
14
  dependencies = [
15
15
  "httpx>=0.25.0",
16
- "matplotlib>=3.10.3",
17
16
  "nest-asyncio>=1.6.0",
18
17
  "pillow>=10.0.0",
19
18
  "pydantic>=2.0.0",
@@ -27,6 +26,7 @@ test = [
27
26
  "pytest-xdist>=3.0.0",
28
27
  "pytest-asyncio>=0.21.0",
29
28
  "ruff>=0.9.3",
29
+ "matplotlib>=3.10.3",
30
30
  ]
31
31
 
32
32
  [dependency-groups]
@@ -1,5 +1,8 @@
1
1
  from .api.chunkr import Chunkr
2
- import tomllib
2
+ try:
3
+ import tomllib
4
+ except ImportError:
5
+ import tomli as tomllib
3
6
  from pathlib import Path
4
7
 
5
8
  # Read version from pyproject.toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chunkr-ai
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: Python client for Chunkr: open source document intelligence
5
5
  Author-email: Ishaan Kapoor <ishaan@lumina.sh>
6
6
  License: MIT License
@@ -29,7 +29,6 @@ Requires-Python: >=3.10
29
29
  Description-Content-Type: text/markdown
30
30
  License-File: LICENSE
31
31
  Requires-Dist: httpx>=0.25.0
32
- Requires-Dist: matplotlib>=3.10.3
33
32
  Requires-Dist: nest-asyncio>=1.6.0
34
33
  Requires-Dist: pillow>=10.0.0
35
34
  Requires-Dist: pydantic>=2.0.0
@@ -40,6 +39,7 @@ Requires-Dist: pytest>=7.0.0; extra == "test"
40
39
  Requires-Dist: pytest-xdist>=3.0.0; extra == "test"
41
40
  Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
42
41
  Requires-Dist: ruff>=0.9.3; extra == "test"
42
+ Requires-Dist: matplotlib>=3.10.3; extra == "test"
43
43
  Dynamic: license-file
44
44
 
45
45
  # Chunkr Python Client
File without changes
File without changes
File without changes
@@ -1,5 +1,4 @@
1
1
  httpx>=0.25.0
2
- matplotlib>=3.10.3
3
2
  nest-asyncio>=1.6.0
4
3
  pillow>=10.0.0
5
4
  pydantic>=2.0.0
@@ -13,3 +12,4 @@ pytest>=7.0.0
13
12
  pytest-xdist>=3.0.0
14
13
  pytest-asyncio>=0.21.0
15
14
  ruff>=0.9.3
15
+ matplotlib>=3.10.3
File without changes
File without changes