myl 0.8.7__tar.gz → 0.8.8__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.
- {myl-0.8.7 → myl-0.8.8}/PKG-INFO +8 -4
- {myl-0.8.7 → myl-0.8.8}/myl.egg-info/PKG-INFO +8 -4
- myl-0.8.8/myl.egg-info/requires.txt +3 -0
- {myl-0.8.7 → myl-0.8.8}/pyproject.toml +10 -4
- myl-0.8.7/myl.egg-info/requires.txt +0 -3
- {myl-0.8.7 → myl-0.8.8}/.github/dependabot.yml +0 -0
- {myl-0.8.7 → myl-0.8.8}/.github/workflows/lint.yaml +0 -0
- {myl-0.8.7 → myl-0.8.8}/.github/workflows/pypi.yaml +0 -0
- {myl-0.8.7 → myl-0.8.8}/.github/workflows/release.yaml +0 -0
- {myl-0.8.7 → myl-0.8.8}/.gitignore +0 -0
- {myl-0.8.7 → myl-0.8.8}/LICENSE +0 -0
- {myl-0.8.7 → myl-0.8.8}/README.md +0 -0
- {myl-0.8.7 → myl-0.8.8}/myl.egg-info/SOURCES.txt +0 -0
- {myl-0.8.7 → myl-0.8.8}/myl.egg-info/dependency_links.txt +0 -0
- {myl-0.8.7 → myl-0.8.8}/myl.egg-info/entry_points.txt +0 -0
- {myl-0.8.7 → myl-0.8.8}/myl.egg-info/top_level.txt +0 -0
- {myl-0.8.7 → myl-0.8.8}/myl.py +0 -0
- {myl-0.8.7 → myl-0.8.8}/setup.cfg +0 -0
{myl-0.8.7 → myl-0.8.8}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: myl
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.8
|
4
4
|
Summary: Dead simple IMAP CLI client
|
5
5
|
Author-email: Philipp Schmitt <philipp@schmitt.co>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -678,14 +678,18 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
678
678
|
Public License instead of this License. But first, please read
|
679
679
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
680
680
|
|
681
|
+
Project-URL: homepage, https://github.com/pschmitt/myl
|
682
|
+
Project-URL: documentation, https://github.com/pschmitt/myl/blob/head/readme.md
|
683
|
+
Project-URL: repository, https://github.com/pschmitt/myl
|
684
|
+
Project-URL: issues, https://github.com/pschmitt/myl/issues
|
681
685
|
Keywords: imap,email
|
682
686
|
Classifier: Programming Language :: Python :: 3
|
683
687
|
Requires-Python: >=3.8
|
684
688
|
Description-Content-Type: text/markdown
|
685
689
|
License-File: LICENSE
|
686
|
-
Requires-Dist: imap-tools
|
687
|
-
Requires-Dist: myl-discovery
|
688
|
-
Requires-Dist: rich
|
690
|
+
Requires-Dist: imap-tools<2.0.0,>=1.5.0
|
691
|
+
Requires-Dist: myl-discovery>=0.5.7
|
692
|
+
Requires-Dist: rich<14.0.0,>=13.0.0
|
689
693
|
|
690
694
|
# 📧 myl
|
691
695
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: myl
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.8
|
4
4
|
Summary: Dead simple IMAP CLI client
|
5
5
|
Author-email: Philipp Schmitt <philipp@schmitt.co>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -678,14 +678,18 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
678
678
|
Public License instead of this License. But first, please read
|
679
679
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
680
680
|
|
681
|
+
Project-URL: homepage, https://github.com/pschmitt/myl
|
682
|
+
Project-URL: documentation, https://github.com/pschmitt/myl/blob/head/readme.md
|
683
|
+
Project-URL: repository, https://github.com/pschmitt/myl
|
684
|
+
Project-URL: issues, https://github.com/pschmitt/myl/issues
|
681
685
|
Keywords: imap,email
|
682
686
|
Classifier: Programming Language :: Python :: 3
|
683
687
|
Requires-Python: >=3.8
|
684
688
|
Description-Content-Type: text/markdown
|
685
689
|
License-File: LICENSE
|
686
|
-
Requires-Dist: imap-tools
|
687
|
-
Requires-Dist: myl-discovery
|
688
|
-
Requires-Dist: rich
|
690
|
+
Requires-Dist: imap-tools<2.0.0,>=1.5.0
|
691
|
+
Requires-Dist: myl-discovery>=0.5.7
|
692
|
+
Requires-Dist: rich<14.0.0,>=13.0.0
|
689
693
|
|
690
694
|
# 📧 myl
|
691
695
|
|
@@ -16,11 +16,17 @@ classifiers = [
|
|
16
16
|
"Programming Language :: Python :: 3",
|
17
17
|
]
|
18
18
|
dependencies = [
|
19
|
-
"imap-tools
|
20
|
-
"myl-discovery
|
21
|
-
"rich >= 13.
|
19
|
+
"imap-tools >= 1.5.0, < 2.0.0",
|
20
|
+
"myl-discovery >= 0.5.7",
|
21
|
+
"rich >= 13.0.0, <14.0.0",
|
22
22
|
]
|
23
|
-
version = "0.8.
|
23
|
+
version = "0.8.8"
|
24
|
+
|
25
|
+
[project.urls]
|
26
|
+
homepage = "https://github.com/pschmitt/myl"
|
27
|
+
documentation = "https://github.com/pschmitt/myl/blob/head/readme.md"
|
28
|
+
repository = "https://github.com/pschmitt/myl"
|
29
|
+
issues = "https://github.com/pschmitt/myl/issues"
|
24
30
|
|
25
31
|
[tool.black]
|
26
32
|
line-length = 79
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{myl-0.8.7 → myl-0.8.8}/LICENSE
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{myl-0.8.7 → myl-0.8.8}/myl.py
RENAMED
File without changes
|
File without changes
|