mbox-extractor 0.1.5__tar.gz → 0.1.7__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.
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/.github/workflows/release.yml +6 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/PKG-INFO +2 -2
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/pyproject.toml +2 -2
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/.github/dependabot.yml +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/.gitignore +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/CLAUDE.md +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/LICENSE +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/README.md +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/logo.png +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/main.py +0 -0
- {mbox_extractor-0.1.5 → mbox_extractor-0.1.7}/uv.lock +0 -0
|
@@ -25,6 +25,12 @@ jobs:
|
|
|
25
25
|
VERSION=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['version'])")
|
|
26
26
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
27
27
|
echo "tag=v$VERSION" >> "$GITHUB_OUTPUT"
|
|
28
|
+
- name: Update repo description
|
|
29
|
+
run: |
|
|
30
|
+
DESC=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['description'])")
|
|
31
|
+
gh repo edit --description "$DESC"
|
|
32
|
+
env:
|
|
33
|
+
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
|
|
28
34
|
- name: Check if tag exists
|
|
29
35
|
id: check
|
|
30
36
|
run: |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mbox-extractor
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: Recursively extract attachments from .mbox
|
|
3
|
+
Version: 0.1.7
|
|
4
|
+
Summary: 📬 Recursively extract all attachments from .mbox email archives with a single command
|
|
5
5
|
Project-URL: Homepage, https://github.com/tsilva/mbox-extractor
|
|
6
6
|
Project-URL: Repository, https://github.com/tsilva/mbox-extractor
|
|
7
7
|
Author-email: Tiago Silva <eng.tiago.silva@gmail.com>
|
|
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mbox-extractor"
|
|
7
|
-
version = "0.1.
|
|
8
|
-
description = "Recursively extract attachments from .mbox
|
|
7
|
+
version = "0.1.7"
|
|
8
|
+
description = "📬 Recursively extract all attachments from .mbox email archives with a single command"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
11
11
|
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
|