winiutils 2.3.14__tar.gz → 2.3.27__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.
- {winiutils-2.3.14 → winiutils-2.3.27}/PKG-INFO +15 -4
- {winiutils-2.3.14 → winiutils-2.3.27}/README.md +5 -3
- {winiutils-2.3.14 → winiutils-2.3.27}/pyproject.toml +17 -1
- winiutils-2.3.27/winiutils/dev/cli/shared_subcommands.py +8 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/security/keyring.py +1 -1
- {winiutils-2.3.14 → winiutils-2.3.27}/LICENSE +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/builders/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/cli/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/cli/subcommands.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/configs/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/tests/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/tests/fixtures/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/dev/tests/fixtures/fixtures.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/main.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/py.typed +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/resources/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/dataframe/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/dataframe/cleaning.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/structures/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/structures/dicts.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/structures/text/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/data/structures/text/string.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/iterating/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/iterating/concurrent/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/iterating/concurrent/concurrent.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/iterating/concurrent/multiprocessing.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/iterating/concurrent/multithreading.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/iterating/iterate.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/oop/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/oop/mixins/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/oop/mixins/meta.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/oop/mixins/mixin.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/security/__init__.py +0 -0
- {winiutils-2.3.14 → winiutils-2.3.27}/winiutils/src/security/cryptography.py +0 -0
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: winiutils
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.27
|
|
4
4
|
Summary: A utility library for Python development
|
|
5
|
+
Keywords:
|
|
5
6
|
Author: Winipedia
|
|
6
7
|
License-Expression: MIT
|
|
7
8
|
License-File: LICENSE
|
|
8
9
|
Classifier: Programming Language :: Python :: 3.12
|
|
9
10
|
Classifier: Programming Language :: Python :: 3.13
|
|
10
11
|
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Typing :: Typed
|
|
11
14
|
Requires-Dist: cryptography
|
|
12
15
|
Requires-Dist: defusedxml
|
|
13
16
|
Requires-Dist: keyring
|
|
@@ -15,7 +18,13 @@ Requires-Dist: keyrings-alt
|
|
|
15
18
|
Requires-Dist: polars
|
|
16
19
|
Requires-Dist: pyrig
|
|
17
20
|
Requires-Dist: tqdm
|
|
21
|
+
Maintainer: Winipedia
|
|
18
22
|
Requires-Python: >=3.12
|
|
23
|
+
Project-URL: Changelog, https://github.com/Winipedia/winiutils/releases
|
|
24
|
+
Project-URL: Documentation, https://Winipedia.github.io/winiutils
|
|
25
|
+
Project-URL: Homepage, https://github.com/Winipedia/winiutils
|
|
26
|
+
Project-URL: Issues, https://github.com/Winipedia/winiutils/issues
|
|
27
|
+
Project-URL: Source, https://github.com/Winipedia/winiutils
|
|
19
28
|
Description-Content-Type: text/markdown
|
|
20
29
|
|
|
21
30
|
# winiutils
|
|
@@ -23,7 +32,9 @@ Description-Content-Type: text/markdown
|
|
|
23
32
|
<!-- tooling -->
|
|
24
33
|
[](https://github.com/Winipedia/pyrig)
|
|
25
34
|
[](https://github.com/astral-sh/uv)
|
|
35
|
+
[](https://podman.io/)
|
|
26
36
|
[](https://pre-commit.com/)
|
|
37
|
+
[](https://www.mkdocs.org/)
|
|
27
38
|
<!-- code-quality -->
|
|
28
39
|
[](https://github.com/astral-sh/ruff)
|
|
29
40
|
[](https://github.com/astral-sh/ty)[](https://mypy-lang.org/)
|
|
@@ -31,13 +42,14 @@ Description-Content-Type: text/markdown
|
|
|
31
42
|
[](https://pytest.org/)
|
|
32
43
|
[](https://codecov.io/gh/Winipedia/winiutils)
|
|
33
44
|
<!-- package-info -->
|
|
34
|
-
[](https://pypi.org/project/winiutils
|
|
45
|
+
[](https://pypi.org/project/winiutils)
|
|
35
46
|
[](https://www.python.org/)
|
|
36
47
|
[](https://github.com/Winipedia/winiutils/blob/main/LICENSE)
|
|
37
48
|
<!-- ci/cd -->
|
|
38
49
|
[](https://github.com/Winipedia/winiutils/actions/workflows/health_check.yaml)
|
|
39
50
|
[](https://github.com/Winipedia/winiutils/actions/workflows/release.yaml)
|
|
40
|
-
|
|
51
|
+
<!-- documentation -->
|
|
52
|
+
[](https://Winipedia.github.io/winiutils)
|
|
41
53
|
|
|
42
54
|
---
|
|
43
55
|
|
|
@@ -45,7 +57,6 @@ Description-Content-Type: text/markdown
|
|
|
45
57
|
|
|
46
58
|
---
|
|
47
59
|
|
|
48
|
-
|
|
49
60
|
## Table of Contents
|
|
50
61
|
|
|
51
62
|
- [Features](#features)
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
<!-- tooling -->
|
|
4
4
|
[](https://github.com/Winipedia/pyrig)
|
|
5
5
|
[](https://github.com/astral-sh/uv)
|
|
6
|
+
[](https://podman.io/)
|
|
6
7
|
[](https://pre-commit.com/)
|
|
8
|
+
[](https://www.mkdocs.org/)
|
|
7
9
|
<!-- code-quality -->
|
|
8
10
|
[](https://github.com/astral-sh/ruff)
|
|
9
11
|
[](https://github.com/astral-sh/ty)[](https://mypy-lang.org/)
|
|
@@ -11,13 +13,14 @@
|
|
|
11
13
|
[](https://pytest.org/)
|
|
12
14
|
[](https://codecov.io/gh/Winipedia/winiutils)
|
|
13
15
|
<!-- package-info -->
|
|
14
|
-
[](https://pypi.org/project/winiutils
|
|
16
|
+
[](https://pypi.org/project/winiutils)
|
|
15
17
|
[](https://www.python.org/)
|
|
16
18
|
[](https://github.com/Winipedia/winiutils/blob/main/LICENSE)
|
|
17
19
|
<!-- ci/cd -->
|
|
18
20
|
[](https://github.com/Winipedia/winiutils/actions/workflows/health_check.yaml)
|
|
19
21
|
[](https://github.com/Winipedia/winiutils/actions/workflows/release.yaml)
|
|
20
|
-
|
|
22
|
+
<!-- documentation -->
|
|
23
|
+
[](https://Winipedia.github.io/winiutils)
|
|
21
24
|
|
|
22
25
|
---
|
|
23
26
|
|
|
@@ -25,7 +28,6 @@
|
|
|
25
28
|
|
|
26
29
|
---
|
|
27
30
|
|
|
28
|
-
|
|
29
31
|
## Table of Contents
|
|
30
32
|
|
|
31
33
|
- [Features](#features)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "winiutils"
|
|
3
|
-
version = "2.3.
|
|
3
|
+
version = "2.3.27"
|
|
4
4
|
description = "A utility library for Python development"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -21,15 +21,28 @@ classifiers = [
|
|
|
21
21
|
"Programming Language :: Python :: 3.12",
|
|
22
22
|
"Programming Language :: Python :: 3.13",
|
|
23
23
|
"Programming Language :: Python :: 3.14",
|
|
24
|
+
"Operating System :: OS Independent",
|
|
25
|
+
"Typing :: Typed",
|
|
24
26
|
]
|
|
25
27
|
license-files = [
|
|
26
28
|
"LICENSE",
|
|
27
29
|
]
|
|
30
|
+
maintainers = [
|
|
31
|
+
{name = "Winipedia"},
|
|
32
|
+
]
|
|
33
|
+
keywords = []
|
|
28
34
|
|
|
29
35
|
[project.scripts]
|
|
30
36
|
winipedia-utils = "pyrig.dev.cli.cli:main"
|
|
31
37
|
winiutils = "pyrig.dev.cli.cli:main"
|
|
32
38
|
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://github.com/Winipedia/winiutils"
|
|
41
|
+
Documentation = "https://Winipedia.github.io/winiutils"
|
|
42
|
+
Source = "https://github.com/Winipedia/winiutils"
|
|
43
|
+
Issues = "https://github.com/Winipedia/winiutils/issues"
|
|
44
|
+
Changelog = "https://github.com/Winipedia/winiutils/releases"
|
|
45
|
+
|
|
33
46
|
[dependency-groups]
|
|
34
47
|
dev = [
|
|
35
48
|
"pyrig-dev",
|
|
@@ -98,3 +111,6 @@ skips = [
|
|
|
98
111
|
"*/tests/*.py",
|
|
99
112
|
"*test_*.py",
|
|
100
113
|
]
|
|
114
|
+
|
|
115
|
+
[tool.ty.terminal]
|
|
116
|
+
error-on-warning = true
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Shared commands for the CLI.
|
|
2
|
+
|
|
3
|
+
This module provides shared CLI commands that can be used by multiple
|
|
4
|
+
packages in a multi-package architecture. These commands are automatically
|
|
5
|
+
discovered and added to the CLI by pyrig.
|
|
6
|
+
Example is version command that is available in all packages.
|
|
7
|
+
uv run my-awesome-project version will return my-awesome-project version 0.1.0
|
|
8
|
+
"""
|
|
@@ -22,7 +22,7 @@ from collections.abc import Callable
|
|
|
22
22
|
import keyring
|
|
23
23
|
from cryptography.fernet import Fernet
|
|
24
24
|
from cryptography.hazmat.primitives.ciphers.aead import AESGCM
|
|
25
|
-
from pyrig.src.git
|
|
25
|
+
from pyrig.src.git import running_in_github_actions
|
|
26
26
|
|
|
27
27
|
if running_in_github_actions():
|
|
28
28
|
from keyrings.alt.file import PlaintextKeyring # type: ignore[import-untyped]
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|