figquilt 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.
- {figquilt-0.1.0 → figquilt-0.1.1}/PKG-INFO +12 -8
- {figquilt-0.1.0 → figquilt-0.1.1}/README.md +11 -7
- {figquilt-0.1.0 → figquilt-0.1.1}/pyproject.toml +1 -1
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/__init__.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/cli.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/compose_pdf.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/compose_svg.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/errors.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/images.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/layout.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/parser.py +0 -0
- {figquilt-0.1.0 → figquilt-0.1.1}/src/figquilt/units.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: figquilt
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: figquilt is a small, language-agnostic CLI tool that composes multiple figures (PDF/SVG/PNG) into a single publication-ready figure, based on a simple layout file (YAML/JSON). The key function is creating a PDF by composing multiple PDFs and adding subfigure labels and minimal annotations.
|
|
5
5
|
Author: YY Ahn
|
|
6
6
|
Author-email: YY Ahn <yongyeol@gmail.com>
|
|
@@ -37,18 +37,22 @@ Description-Content-Type: text/markdown
|
|
|
37
37
|
|
|
38
38
|
## Installation
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
```bash
|
|
41
|
+
uv tool install figquilt
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or add it as a project dependency:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
uv add figquilt
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Development Installation
|
|
41
51
|
|
|
42
52
|
```bash
|
|
43
|
-
# Clone the repository
|
|
44
53
|
git clone https://github.com/yy/figquilt.git
|
|
45
54
|
cd figquilt
|
|
46
|
-
|
|
47
|
-
# Install dependencies and set up the environment
|
|
48
55
|
uv sync
|
|
49
|
-
|
|
50
|
-
# Install the package in editable mode
|
|
51
|
-
uv pip install -e .
|
|
52
56
|
```
|
|
53
57
|
|
|
54
58
|
## Usage
|
|
@@ -14,18 +14,22 @@
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
```bash
|
|
18
|
+
uv tool install figquilt
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or add it as a project dependency:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv add figquilt
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Development Installation
|
|
18
28
|
|
|
19
29
|
```bash
|
|
20
|
-
# Clone the repository
|
|
21
30
|
git clone https://github.com/yy/figquilt.git
|
|
22
31
|
cd figquilt
|
|
23
|
-
|
|
24
|
-
# Install dependencies and set up the environment
|
|
25
32
|
uv sync
|
|
26
|
-
|
|
27
|
-
# Install the package in editable mode
|
|
28
|
-
uv pip install -e .
|
|
29
33
|
```
|
|
30
34
|
|
|
31
35
|
## Usage
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "figquilt"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "figquilt is a small, language-agnostic CLI tool that composes multiple figures (PDF/SVG/PNG) into a single publication-ready figure, based on a simple layout file (YAML/JSON). The key function is creating a PDF by composing multiple PDFs and adding subfigure labels and minimal annotations."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
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
|