refigure 0.0.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.
- refigure-0.0.0/.gitignore +43 -0
- refigure-0.0.0/PKG-INFO +22 -0
- refigure-0.0.0/README.md +14 -0
- refigure-0.0.0/pyproject.toml +16 -0
- refigure-0.0.0/src/refigure/__init__.py +3 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Секреты — НИКОГДА не коммитить (.env.example без реального значения — трекается)
|
|
2
|
+
.env
|
|
3
|
+
|
|
4
|
+
# Python
|
|
5
|
+
.venv/
|
|
6
|
+
__pycache__/
|
|
7
|
+
.mypy_cache/
|
|
8
|
+
.ruff_cache/
|
|
9
|
+
.pytest_cache/
|
|
10
|
+
*.pyc
|
|
11
|
+
|
|
12
|
+
# Coverage (pytest-cov) — производный отчёт, пересобирается каждым прогоном
|
|
13
|
+
.coverage
|
|
14
|
+
htmlcov/
|
|
15
|
+
|
|
16
|
+
# Локальные ML-модели (эмбеддинги и т.п.) — тяжёлые, качаются отдельно, не в git
|
|
17
|
+
/pipeline/models/
|
|
18
|
+
|
|
19
|
+
# Производные индексы (SQLite FTS5/векторы) — пересобираются из корпуса, не в git
|
|
20
|
+
/pipeline/index/
|
|
21
|
+
|
|
22
|
+
# OS / editor
|
|
23
|
+
.DS_Store
|
|
24
|
+
|
|
25
|
+
# Локальные бинарные фикстуры для живой (не CI) отладки конвертеров — реальные документы
|
|
26
|
+
# сторонних владельцев, НЕ тела корпуса; синтетические CI-фикстуры остаются в самих тестах
|
|
27
|
+
/pipeline/scripts/tests/fixtures/local/
|
|
28
|
+
|
|
29
|
+
# corpus-layout-v2: документы локально (raw/doc.md/.state.yaml), курируемая meta.yaml — в git
|
|
30
|
+
/sources/**
|
|
31
|
+
!/sources/**/
|
|
32
|
+
!/sources/**/meta.yaml
|
|
33
|
+
# внутренняя кухня: вся документация проекта локально — docs/project_core (видение)
|
|
34
|
+
# + docs/pipeline (чартеры/спеки по функц. блокам + general/ = стратегия пайплайна).
|
|
35
|
+
# Корневой README (если появится) — трекать отдельным исключением.
|
|
36
|
+
# Реорганизовано из /agenda/ и /pipeline/setup/.
|
|
37
|
+
/docs/
|
|
38
|
+
# внутренняя кухня: кастомные команды/настройки Claude Code, локально
|
|
39
|
+
/.claude/
|
|
40
|
+
|
|
41
|
+
# Локальные бинарные фикстуры для живой (не CI) отладки конвертеров — реальные документы
|
|
42
|
+
# сторонних владельцев, НЕ тела корпуса; синтетические CI-фикстуры остаются в самих тестах
|
|
43
|
+
/pipeline/scripts/tests/fixtures/local/
|
refigure-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: refigure
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved name for the refigure project: converters where figures survive (PDF/DOCX/XLSX to Markdown). First real release planned August 2026.
|
|
5
|
+
Classifier: Development Status :: 1 - Planning
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# refigure
|
|
10
|
+
|
|
11
|
+
**Name reserved for the refigure project — converters where figures survive.**
|
|
12
|
+
|
|
13
|
+
PDF / DOCX / XLSX → Markdown converters that treat embedded charts, composite
|
|
14
|
+
diagrams and infographics as single semantic objects instead of silently
|
|
15
|
+
dropping or fragmenting them: positioned machine-readable markers as the
|
|
16
|
+
zero-loss floor, optional VLM interpretation (prose + mermaid) on top, cached
|
|
17
|
+
and reproducible offline.
|
|
18
|
+
|
|
19
|
+
This is a placeholder release. The package is being extracted from a working
|
|
20
|
+
document-analysis pipeline; the first real release is planned for **August 2026**.
|
|
21
|
+
The distribution name may end up as `refigure` or `refigure-md` — both are
|
|
22
|
+
reserved by the same author.
|
refigure-0.0.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# refigure
|
|
2
|
+
|
|
3
|
+
**Name reserved for the refigure project — converters where figures survive.**
|
|
4
|
+
|
|
5
|
+
PDF / DOCX / XLSX → Markdown converters that treat embedded charts, composite
|
|
6
|
+
diagrams and infographics as single semantic objects instead of silently
|
|
7
|
+
dropping or fragmenting them: positioned machine-readable markers as the
|
|
8
|
+
zero-loss floor, optional VLM interpretation (prose + mermaid) on top, cached
|
|
9
|
+
and reproducible offline.
|
|
10
|
+
|
|
11
|
+
This is a placeholder release. The package is being extracted from a working
|
|
12
|
+
document-analysis pipeline; the first real release is planned for **August 2026**.
|
|
13
|
+
The distribution name may end up as `refigure` or `refigure-md` — both are
|
|
14
|
+
reserved by the same author.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "refigure"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved name for the refigure project: converters where figures survive (PDF/DOCX/XLSX to Markdown). First real release planned August 2026."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Development Status :: 1 - Planning",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["src/refigure"]
|