decksmith 0.1.3__tar.gz → 0.1.4__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.
- decksmith-0.1.4/PKG-INFO +52 -0
- decksmith-0.1.4/docs/README.md +29 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/pyproject.toml +2 -2
- decksmith-0.1.3/PKG-INFO +0 -46
- decksmith-0.1.3/docs/README.md +0 -23
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/__init__.py +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/card_builder.py +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/deck_builder.py +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/export.py +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/main.py +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/templates/deck.csv +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/templates/deck.json +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/utils.py +0 -0
- {decksmith-0.1.3 → decksmith-0.1.4}/decksmith/validate.py +0 -0
decksmith-0.1.4/PKG-INFO
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: decksmith
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck.
|
|
5
|
+
License: GPL-2.0-only
|
|
6
|
+
Author: Julio Cabria
|
|
7
|
+
Author-email: juliocabria@tutanota.com
|
|
8
|
+
Requires-Python: >=3.13
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: click
|
|
14
|
+
Requires-Dist: jval (==1.0.6)
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
Requires-Dist: pillow (>=11.3.0)
|
|
17
|
+
Requires-Dist: poetry ; extra == "dev"
|
|
18
|
+
Requires-Dist: pytest ; extra == "dev"
|
|
19
|
+
Requires-Dist: reportlab (>=4.4.3)
|
|
20
|
+
Project-URL: Homepage, https://github.com/Julynx/decksmith
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# DeckSmith
|
|
24
|
+
|
|
25
|
+
*A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck.*
|
|
26
|
+
|
|
27
|
+
<br>
|
|
28
|
+
<p align="center">
|
|
29
|
+
<img width="600" src="assets/decksmith.png">
|
|
30
|
+
</p>
|
|
31
|
+
<br>
|
|
32
|
+
|
|
33
|
+
DeckSmith is ideal for automating the creation of all kinds of decks, including TCG decks, tarot decks, business cards, and even slides.
|
|
34
|
+
|
|
35
|
+
## Features
|
|
36
|
+
|
|
37
|
+
- [Initialize a sample project and edit it instead of starting from scratch](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#decksmith-init)
|
|
38
|
+
|
|
39
|
+
- [Include images](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#images), [text](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#text), [and different kinds of shapes](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#shapes)
|
|
40
|
+
|
|
41
|
+
- [Link any field to a column in the CSV file](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#basic-example-with-deckcsv)
|
|
42
|
+
|
|
43
|
+
- [Position elements absolutely or relative to other elements, using anchors to simplify placement](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#positioning)
|
|
44
|
+
|
|
45
|
+
- [Transform images using filters like crop, resize, rotate, or flip](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#images)
|
|
46
|
+
|
|
47
|
+
- [Build card images and export to PDF for printing](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#building-the-deck)
|
|
48
|
+
|
|
49
|
+
## Getting started
|
|
50
|
+
|
|
51
|
+
To start creating decks, check out [Getting Started](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md/#getting-started).
|
|
52
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# DeckSmith
|
|
2
|
+
|
|
3
|
+
*A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck.*
|
|
4
|
+
|
|
5
|
+
<br>
|
|
6
|
+
<p align="center">
|
|
7
|
+
<img width="600" src="assets/decksmith.png">
|
|
8
|
+
</p>
|
|
9
|
+
<br>
|
|
10
|
+
|
|
11
|
+
DeckSmith is ideal for automating the creation of all kinds of decks, including TCG decks, tarot decks, business cards, and even slides.
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
- [Initialize a sample project and edit it instead of starting from scratch](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#decksmith-init)
|
|
16
|
+
|
|
17
|
+
- [Include images](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#images), [text](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#text), [and different kinds of shapes](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#shapes)
|
|
18
|
+
|
|
19
|
+
- [Link any field to a column in the CSV file](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#basic-example-with-deckcsv)
|
|
20
|
+
|
|
21
|
+
- [Position elements absolutely or relative to other elements, using anchors to simplify placement](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#positioning)
|
|
22
|
+
|
|
23
|
+
- [Transform images using filters like crop, resize, rotate, or flip](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#images)
|
|
24
|
+
|
|
25
|
+
- [Build card images and export to PDF for printing](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md#building-the-deck)
|
|
26
|
+
|
|
27
|
+
## Getting started
|
|
28
|
+
|
|
29
|
+
To start creating decks, check out [Getting Started](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md/#getting-started).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "decksmith"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck."
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Julio Cabria", email = "juliocabria@tutanota.com"},
|
|
@@ -24,7 +24,7 @@ dev = [
|
|
|
24
24
|
|
|
25
25
|
[tool.poetry]
|
|
26
26
|
name = "decksmith"
|
|
27
|
-
version = "0.1.
|
|
27
|
+
version = "0.1.4"
|
|
28
28
|
description = "A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck."
|
|
29
29
|
authors = ["Julio Cabria <juliocabria@tutanota.com>"]
|
|
30
30
|
license = "GPL-2.0-only"
|
decksmith-0.1.3/PKG-INFO
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: decksmith
|
|
3
|
-
Version: 0.1.3
|
|
4
|
-
Summary: A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck.
|
|
5
|
-
License: GPL-2.0-only
|
|
6
|
-
Author: Julio Cabria
|
|
7
|
-
Author-email: juliocabria@tutanota.com
|
|
8
|
-
Requires-Python: >=3.13
|
|
9
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
-
Provides-Extra: dev
|
|
13
|
-
Requires-Dist: click
|
|
14
|
-
Requires-Dist: jval (==1.0.6)
|
|
15
|
-
Requires-Dist: pandas
|
|
16
|
-
Requires-Dist: pillow (>=11.3.0)
|
|
17
|
-
Requires-Dist: poetry ; extra == "dev"
|
|
18
|
-
Requires-Dist: pytest ; extra == "dev"
|
|
19
|
-
Requires-Dist: reportlab (>=4.4.3)
|
|
20
|
-
Project-URL: Homepage, https://github.com/Julynx/decksmith
|
|
21
|
-
Description-Content-Type: text/markdown
|
|
22
|
-
|
|
23
|
-
# DeckSmith
|
|
24
|
-
|
|
25
|
-
A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck.
|
|
26
|
-
|
|
27
|
-
DeckSmith is ideal for automating the creation of all kinds of decks, including TCG decks, tarot decks, business cards, and even slides.
|
|
28
|
-
|
|
29
|
-
## Features
|
|
30
|
-
|
|
31
|
-
- Initialize a sample project and edit it instead of starting from scratch.
|
|
32
|
-
|
|
33
|
-
- Include images, text, and different kinds of shapes.
|
|
34
|
-
|
|
35
|
-
- Link any field to a column in the CSV file.
|
|
36
|
-
|
|
37
|
-
- Position elements absolutely or relative to other elements, using anchors to simplify placement
|
|
38
|
-
|
|
39
|
-
- Transform images using filters like crop, resize, rotate, or flip.
|
|
40
|
-
|
|
41
|
-
- Build card images and export to PDF for printing.
|
|
42
|
-
|
|
43
|
-
## Getting started
|
|
44
|
-
|
|
45
|
-
To start creating decks, check out [Getting Started](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md/#getting-started).
|
|
46
|
-
|
decksmith-0.1.3/docs/README.md
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# DeckSmith
|
|
2
|
-
|
|
3
|
-
A command-line application to dynamically generate decks of cards from a JSON specification and a CSV data file, inspired by nandeck.
|
|
4
|
-
|
|
5
|
-
DeckSmith is ideal for automating the creation of all kinds of decks, including TCG decks, tarot decks, business cards, and even slides.
|
|
6
|
-
|
|
7
|
-
## Features
|
|
8
|
-
|
|
9
|
-
- Initialize a sample project and edit it instead of starting from scratch.
|
|
10
|
-
|
|
11
|
-
- Include images, text, and different kinds of shapes.
|
|
12
|
-
|
|
13
|
-
- Link any field to a column in the CSV file.
|
|
14
|
-
|
|
15
|
-
- Position elements absolutely or relative to other elements, using anchors to simplify placement
|
|
16
|
-
|
|
17
|
-
- Transform images using filters like crop, resize, rotate, or flip.
|
|
18
|
-
|
|
19
|
-
- Build card images and export to PDF for printing.
|
|
20
|
-
|
|
21
|
-
## Getting started
|
|
22
|
-
|
|
23
|
-
To start creating decks, check out [Getting Started](https://github.com/Julynx/decksmith/blob/main/docs/DOCS.md/#getting-started).
|
|
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
|