poster2json 0.1.0__tar.gz → 0.1.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.
- {poster2json-0.1.0 → poster2json-0.1.1}/PKG-INFO +4 -3
- {poster2json-0.1.0 → poster2json-0.1.1}/README.md +3 -2
- {poster2json-0.1.0 → poster2json-0.1.1}/pyproject.toml +2 -4
- {poster2json-0.1.0 → poster2json-0.1.1}/LICENSE.md +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/__init__.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/__main__.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/cli.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/extract.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/gui.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/schemas/poster_schema.json +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/standards.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/tests/__init__.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/tests/conftest.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/utils.py +0 -0
- {poster2json-0.1.0 → poster2json-0.1.1}/poster2json/validate.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: poster2json
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Convert scientific posters (PDF/images) to structured JSON metadata using Large Language Models
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE.md
|
|
@@ -44,7 +44,7 @@ Description-Content-Type: text/markdown
|
|
|
44
44
|
|
|
45
45
|
<div align="center">
|
|
46
46
|
|
|
47
|
-
<img src="https://
|
|
47
|
+
<img src="https://cdn.posters.science/logos/poster-fairy.png" alt="logo" width="200" height="auto" />
|
|
48
48
|
|
|
49
49
|
<br />
|
|
50
50
|
|
|
@@ -211,7 +211,8 @@ cd poster2json
|
|
|
211
211
|
python -m venv .venv
|
|
212
212
|
|
|
213
213
|
# Activate the virtual environment
|
|
214
|
-
source venv/bin/activate
|
|
214
|
+
source venv/bin/activate
|
|
215
|
+
.venv\Scripts\activate # On Windows
|
|
215
216
|
|
|
216
217
|
# Install poetry
|
|
217
218
|
pip install poetry
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<img src="https://
|
|
3
|
+
<img src="https://cdn.posters.science/logos/poster-fairy.png" alt="logo" width="200" height="auto" />
|
|
4
4
|
|
|
5
5
|
<br />
|
|
6
6
|
|
|
@@ -167,7 +167,8 @@ cd poster2json
|
|
|
167
167
|
python -m venv .venv
|
|
168
168
|
|
|
169
169
|
# Activate the virtual environment
|
|
170
|
-
source venv/bin/activate
|
|
170
|
+
source venv/bin/activate
|
|
171
|
+
.venv\Scripts\activate # On Windows
|
|
171
172
|
|
|
172
173
|
# Install poetry
|
|
173
174
|
pip install poetry
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
|
|
3
3
|
name = "poster2json"
|
|
4
|
-
version = "0.1.
|
|
4
|
+
version = "0.1.1"
|
|
5
5
|
description = "Convert scientific posters (PDF/images) to structured JSON metadata using Large Language Models"
|
|
6
6
|
|
|
7
7
|
packages = [{ include = "poster2json" }]
|
|
@@ -134,9 +134,7 @@ cache_dir = ".cache/mypy/"
|
|
|
134
134
|
[tool.pytest.ini_options]
|
|
135
135
|
addopts = "-r sxX --show-capture=log --cov=poster2json --cov-report=term-missing:skip-covered --no-cov-on-fail"
|
|
136
136
|
cache_dir = ".cache/pytest/"
|
|
137
|
-
markers = [
|
|
138
|
-
"gpu: mark test as requiring a GPU (skip in CI with -m 'not gpu')",
|
|
139
|
-
]
|
|
137
|
+
markers = ["gpu: mark test as requiring a GPU (skip in CI with -m 'not gpu')"]
|
|
140
138
|
|
|
141
139
|
[build-system]
|
|
142
140
|
requires = ["poetry-core>=1.0.0"]
|
|
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
|
|
File without changes
|
|
File without changes
|