kstd 0.1.0__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.
@@ -0,0 +1,3 @@
1
+
2
+
3
+ ### Testing
@@ -0,0 +1,37 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+ workflow_dispatch:
6
+
7
+ jobs:
8
+ ci-cd:
9
+ name: CI
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+
16
+ - name: Install uv
17
+ uses: astral-sh/setup-uv@v5
18
+ with:
19
+ enable-cache: true
20
+ cache-dependency-glob: uv.lock
21
+
22
+ - name: Install Python dependencies
23
+ run: uv sync
24
+
25
+ - name: Install Node.js
26
+ uses: actions/setup-node@v4
27
+ with:
28
+ node-version-file: package.json
29
+
30
+ - name: Install pnpm and Node.js dependencies
31
+ uses: pnpm/action-setup@v4
32
+ with:
33
+ package_json_file: package.json
34
+ run_install: true
35
+
36
+ - name: Check
37
+ run: uv run poe check
kstd-0.1.0/.gitignore ADDED
@@ -0,0 +1,215 @@
1
+ ###
2
+ # Other files
3
+ ###
4
+
5
+ *.log
6
+
7
+ ###
8
+ # MacOS files
9
+ ###
10
+
11
+ # Taken from https://github.com/github/gitignore/blob/e5323759e387ba347a9d50f8b0ddd16502eb71d4/Global/macOS.gitignore
12
+
13
+ # General
14
+ .DS_Store
15
+ .AppleDouble
16
+ .LSOverride
17
+
18
+ # Icon must end with two \r. Note: this may have been broken by editor aggressively trimming trailing whitespace.
19
+ # If you know of a good way to fix it, please do! Refer to the link above to find the source file. Commenting it out
20
+ # for now...
21
+ # Icon
22
+
23
+ # Thumbnails
24
+ ._*
25
+
26
+ # Files that might appear in the root of a volume
27
+ .DocumentRevisions-V100
28
+ .fseventsd
29
+ .Spotlight-V100
30
+ .TemporaryItems
31
+ .Trashes
32
+ .VolumeIcon.icns
33
+ .com.apple.timemachine.donotpresent
34
+
35
+ # Directories potentially created on remote AFP share
36
+ .AppleDB
37
+ .AppleDesktop
38
+ Network Trash Folder
39
+ Temporary Items
40
+ .apdisk
41
+
42
+
43
+ ###
44
+ # Node.js
45
+ #
46
+ ###
47
+
48
+ # Installed modules
49
+ node_modules/
50
+
51
+ ###
52
+ # Python
53
+ ###
54
+
55
+ # Byte-compiled / optimized / DLL files
56
+ __pycache__/
57
+ *.py[cod]
58
+ *$py.class
59
+
60
+ # C extensions
61
+ *.so
62
+
63
+ # Distribution / packaging
64
+ .Python
65
+ build/
66
+ develop-eggs/
67
+ dist/
68
+ downloads/
69
+ eggs/
70
+ .eggs/
71
+ lib/
72
+ lib64/
73
+ parts/
74
+ sdist/
75
+ var/
76
+ wheels/
77
+ share/python-wheels/
78
+ *.egg-info/
79
+ .installed.cfg
80
+ *.egg
81
+ MANIFEST
82
+
83
+ # PyInstaller
84
+ # Usually these files are written by a python script from a template
85
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
86
+ *.manifest
87
+ *.spec
88
+
89
+ # Installer logs
90
+ pip-log.txt
91
+ pip-delete-this-directory.txt
92
+
93
+ # Unit test / coverage reports
94
+ htmlcov/
95
+ .tox/
96
+ .nox/
97
+ .coverage
98
+ .coverage.*
99
+ .cache
100
+ nosetests.xml
101
+ coverage.xml
102
+ *.cover
103
+ *.py,cover
104
+ .hypothesis/
105
+ .pytest_cache/
106
+ .ruff_cache/
107
+ cover/
108
+
109
+ # Translations
110
+ *.mo
111
+ *.pot
112
+
113
+ # Django stuff:
114
+ *.log
115
+ local_settings.py
116
+ db.sqlite3
117
+ db.sqlite3-journal
118
+
119
+ # Flask stuff:
120
+ instance/
121
+ .webassets-cache
122
+
123
+ # Scrapy stuff:
124
+ .scrapy
125
+
126
+ # Sphinx documentation
127
+ docs/_build/
128
+
129
+ # PyBuilder
130
+ .pybuilder/
131
+ target/
132
+
133
+ # Jupyter Notebook
134
+ .ipynb_checkpoints
135
+
136
+ # IPython
137
+ profile_default/
138
+ ipython_config.py
139
+
140
+ # pyenv
141
+ # For a library or package, you might want to ignore these files since the code is
142
+ # intended to run in multiple environments; otherwise, check them in:
143
+ # .python-version
144
+
145
+ # pipenv
146
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
147
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
148
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
149
+ # install all needed dependencies.
150
+ #Pipfile.lock
151
+
152
+ # poetry
153
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
154
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
155
+ # commonly ignored for libraries.
156
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
157
+ #poetry.lock
158
+
159
+ # pdm
160
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
161
+ #pdm.lock
162
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
163
+ # in version control.
164
+ # https://pdm.fming.dev/#use-with-ide
165
+ .pdm.toml
166
+
167
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
168
+ __pypackages__/
169
+
170
+ # Celery stuff
171
+ celerybeat-schedule
172
+ celerybeat.pid
173
+
174
+ # SageMath parsed files
175
+ *.sage.py
176
+
177
+ # Environments
178
+ .env
179
+ .venv
180
+ env/
181
+ venv/
182
+ ENV/
183
+ env.bak/
184
+ venv.bak/
185
+
186
+ # Spyder project settings
187
+ .spyderproject
188
+ .spyproject
189
+
190
+ # Rope project settings
191
+ .ropeproject
192
+
193
+ # mkdocs documentation
194
+ /site
195
+
196
+ # mypy
197
+ .mypy_cache/
198
+ .dmypy.json
199
+ dmypy.json
200
+
201
+ # Pyre type checker
202
+ .pyre/
203
+
204
+ # pytype static type analyzer
205
+ .pytype/
206
+
207
+ # Cython debug symbols
208
+ cython_debug/
209
+
210
+ # PyCharm
211
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
212
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
213
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
214
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
215
+ #.idea/
@@ -0,0 +1 @@
1
+ 3.12.8
@@ -0,0 +1,8 @@
1
+ {
2
+ "recommendations": [
3
+ "charliermarsh.ruff",
4
+ "ms-python.python",
5
+ "streetsidesoftware.code-spell-checker",
6
+ "tamasfe.even-better-toml",
7
+ ],
8
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ // General editor settings
3
+ "editor.formatOnSave": true,
4
+ "editor.formatOnSaveMode": "file",
5
+ "files.insertFinalNewline": true,
6
+ "files.trimFinalNewlines": true,
7
+ "files.trimTrailingWhitespace": true,
8
+ // Python
9
+ "python.analysis.autoImportCompletions": false,
10
+ "python.analysis.indexing": true,
11
+ "python.defaultInterpreterPath": ".venv/bin/python",
12
+ "python.envFile": "",
13
+ "python.languageServer": "Pylance",
14
+ "python.terminal.activateEnvironment": false,
15
+ "python.testing.pytestEnabled": true,
16
+ "ruff.importStrategy": "fromEnvironment",
17
+ "ruff.organizeImports": true,
18
+ "[python]": {
19
+ "editor.codeActionsOnSave": {
20
+ "source.fixAll": "always",
21
+ },
22
+ "editor.defaultFormatter": "charliermarsh.ruff",
23
+ },
24
+ // TOML
25
+ "evenBetterToml.formatter.alignComments": false,
26
+ "evenBetterToml.formatter.alignEntries": false,
27
+ "evenBetterToml.formatter.arrayAutoCollapse": false,
28
+ "evenBetterToml.formatter.compactInlineTables": true,
29
+ "evenBetterToml.formatter.indentString": " ",
30
+ "evenBetterToml.formatter.reorderKeys": true,
31
+ "evenBetterToml.schema.enabled": false,
32
+ "[toml]": {
33
+ "editor.defaultFormatter": "tamasfe.even-better-toml",
34
+ },
35
+ // Spellcheck
36
+ "cSpell.language": "en-US",
37
+ "cSpell.words": [
38
+ "FURB",
39
+ "kkom's",
40
+ "Komorowski",
41
+ "kstd",
42
+ "poethepoet",
43
+ "pyright",
44
+ "pytest",
45
+ "tomlsort"
46
+ ],
47
+ }
kstd-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Konrad Komorowski
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
kstd-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: kstd
3
+ Version: 0.1.0
4
+ Author: Konrad Komorowski
5
+ License: MIT License
6
+
7
+ Copyright (c) 2024 Konrad Komorowski
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
26
+ License-File: LICENSE
27
+ Classifier: Development Status :: 3 - Alpha
28
+ Classifier: Intended Audience :: Developers
29
+ Classifier: License :: OSI Approved :: MIT License
30
+ Classifier: Programming Language :: Python
31
+ Classifier: Programming Language :: Python :: 3
32
+ Classifier: Programming Language :: Python :: 3.12
33
+ Classifier: Programming Language :: Python :: 3.13
34
+ Requires-Python: >=3.12
35
+ Description-Content-Type: text/markdown
36
+
37
+ # kstd
kstd-0.1.0/README.md ADDED
@@ -0,0 +1 @@
1
+ # kstd
@@ -0,0 +1,9 @@
1
+ {
2
+ "devDependencies": {
3
+ "pyright": "1.1.391"
4
+ },
5
+ "engines": {
6
+ "node": "22.12.0"
7
+ },
8
+ "packageManager": "pnpm@9.15.1"
9
+ }
@@ -0,0 +1,74 @@
1
+ [project]
2
+ authors = [
3
+ {name = "Konrad Komorowski"},
4
+ ]
5
+ classifiers = [
6
+ "Development Status :: 3 - Alpha",
7
+ "Intended Audience :: Developers",
8
+ "License :: OSI Approved :: MIT License",
9
+ "Programming Language :: Python",
10
+ "Programming Language :: Python :: 3",
11
+ "Programming Language :: Python :: 3.12",
12
+ "Programming Language :: Python :: 3.13",
13
+ ]
14
+ license = {file = "LICENSE"}
15
+ name = "kstd"
16
+ readme = "README.md"
17
+ requires-python = ">=3.12"
18
+ version = "0.1.0"
19
+
20
+ [dependency-groups]
21
+ dev = [
22
+ "poethepoet==0.31.1",
23
+ "pytest==8.3.4",
24
+ "ruff==0.8.4",
25
+ "toml-sort==0.24.2",
26
+ ]
27
+
28
+ [tool.poe.tasks]
29
+ check_format_python = "ruff format --check"
30
+ check_format_toml = "toml-sort --check *.toml"
31
+ check_lint = "ruff check"
32
+ check_tests = "pytest"
33
+ check_types = "npx pyright"
34
+ format_python = "ruff format"
35
+ format_toml = "toml-sort --in-place *.toml"
36
+ install_pnpm = "pnpm install"
37
+ install_uv = "uv sync"
38
+
39
+ [tool.poe.tasks.check]
40
+ sequence = [
41
+ "check_types",
42
+ "check_lint",
43
+ "check_tests",
44
+ "check_format",
45
+ ]
46
+
47
+ [tool.poe.tasks.check_format]
48
+ sequence = [
49
+ "check_format_python",
50
+ "check_format_toml",
51
+ ]
52
+
53
+ [tool.poe.tasks.format]
54
+ sequence = [
55
+ "format_python",
56
+ "format_toml",
57
+ ]
58
+
59
+ [tool.poe.tasks.install]
60
+ sequence = [
61
+ "install_pnpm",
62
+ "install_uv",
63
+ ]
64
+
65
+ [tool.tomlsort]
66
+ no_sort_tables = true
67
+ sort_inline_tables = true
68
+ sort_table_keys = true
69
+ spaces_indent_inline_array = 4
70
+ trailing_comma_inline_array = true
71
+
72
+ [build-system]
73
+ build-backend = "hatchling.build"
74
+ requires = ["hatchling"]
@@ -0,0 +1,15 @@
1
+ {
2
+ "reportCallInDefaultInitializer": true,
3
+ "reportImplicitOverride": true,
4
+ "reportImportCycles": true,
5
+ "reportMissingParameterType": false, // we're using Ruff's ANN rules to require annotations in a more granular way
6
+ "reportMissingSuperCall": true,
7
+ "reportMissingTypeStubs": false, // they are not always available
8
+ "reportPropertyTypeMismatch": true,
9
+ "reportShadowedImports": true,
10
+ "reportUninitializedInstanceVariable": true,
11
+ "reportUnnecessaryTypeIgnoreComment": true,
12
+ "reportUnusedCallResult": true,
13
+ "typeCheckingMode": "strict",
14
+ "useLibraryCodeForTypes": true,
15
+ }
kstd-0.1.0/ruff.toml ADDED
@@ -0,0 +1,37 @@
1
+ line-length = 100
2
+ preview = true
3
+ target-version = "py312"
4
+
5
+ [lint]
6
+ extend-safe-fixes = [
7
+ "PYI025", # The fix quite elaborate to do manually, so the autofixer is handy
8
+ "TC", # It is easy to see and test the effects of this autofix
9
+ ]
10
+ ignore = [
11
+ "CPY", # Not needed in this project
12
+ "D203", # Incompatible with D211
13
+ "D212", # Incompatible with D213
14
+ "E501", # Ruff formatter takes care of keeping lines not too long
15
+ "FURB118", # operator.* methods are often not as well typed as lambda (and arguably less readable)
16
+ "ISC001", # Incompatible with Ruff formatter
17
+ "PIE810", # The recommended pattern can be hard to understand (implicit 'or' semantics)
18
+ "PLC0206", # Calling `keys()` or `values()` can be clearer
19
+ "PLC0415", # Permit delayed import
20
+ "PLC1901", # Prefer explicit comparisons
21
+ "PLR09", # These count-based rules are often too crude
22
+ "PLR2004", # Magic values are often acceptable, especially as Pyright reasons about them as literal
23
+ "PLR5501", # Nested if statements are sometimes intentional for readability
24
+ "PLW0108", # Explicit lambdas make some code more readable
25
+ "PT011", # Sometimes the raised errors is broad
26
+ "TID252", # Relative imports are sometimes cleaner
27
+ ]
28
+ select = ["ALL"]
29
+
30
+ [lint.per-file-ignores]
31
+ "tests/**" = [
32
+ "D1", # Less stringent documentation requirements in tests
33
+ "S101", # Asserts are expected in tests
34
+ ]
35
+
36
+ [lint.flake8-type-checking]
37
+ strict = true
@@ -0,0 +1 @@
1
+ """KSTD (@kkom's Standard Library) is a collection of utility functions and classes for Python development."""
@@ -0,0 +1,19 @@
1
+ """Utility functions for string manipulation."""
2
+
3
+
4
+ def head(value: str, first: int = 50) -> str:
5
+ """
6
+ Take the first N characters of a string, replacing newlines with spaces.
7
+
8
+ Args:
9
+ value: The input string.
10
+ first: Maximum number of characters to return (default: 50).
11
+
12
+ Returns:
13
+ A string of at most N characters with newlines replaced by spaces.
14
+
15
+ """
16
+ if len(value) <= first:
17
+ return value.replace("\n", " ")
18
+
19
+ return value[: first - 3].replace("\n", " ") + "..."
File without changes
@@ -0,0 +1,22 @@
1
+ import pytest
2
+
3
+ from kstd import strings
4
+
5
+
6
+ @pytest.mark.parametrize(
7
+ ("value", "expected"),
8
+ [
9
+ ("", ""),
10
+ ("a", "a"),
11
+ ("\n", " "),
12
+ ("\n\n", " "),
13
+ (" a ", " a "),
14
+ ("a" * 50, "a" * 50),
15
+ ("a" * 51, "a" * 47 + "..."),
16
+ ],
17
+ )
18
+ def test_head(
19
+ value: str,
20
+ expected: str,
21
+ ) -> None:
22
+ assert strings.head(value) == expected
kstd-0.1.0/uv.lock ADDED
@@ -0,0 +1,170 @@
1
+ version = 1
2
+ requires-python = ">=3.12"
3
+
4
+ [[package]]
5
+ name = "colorama"
6
+ version = "0.4.6"
7
+ source = { registry = "https://pypi.org/simple" }
8
+ sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 }
9
+ wheels = [
10
+ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 },
11
+ ]
12
+
13
+ [[package]]
14
+ name = "iniconfig"
15
+ version = "2.0.0"
16
+ source = { registry = "https://pypi.org/simple" }
17
+ sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 }
18
+ wheels = [
19
+ { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
20
+ ]
21
+
22
+ [[package]]
23
+ name = "kstd"
24
+ version = "0.1.0"
25
+ source = { editable = "." }
26
+
27
+ [package.dev-dependencies]
28
+ dev = [
29
+ { name = "poethepoet" },
30
+ { name = "pytest" },
31
+ { name = "ruff" },
32
+ { name = "toml-sort" },
33
+ ]
34
+
35
+ [package.metadata]
36
+
37
+ [package.metadata.requires-dev]
38
+ dev = [
39
+ { name = "poethepoet", specifier = "==0.31.1" },
40
+ { name = "pytest", specifier = "==8.3.4" },
41
+ { name = "ruff", specifier = "==0.8.4" },
42
+ { name = "toml-sort", specifier = "==0.24.2" },
43
+ ]
44
+
45
+ [[package]]
46
+ name = "packaging"
47
+ version = "24.2"
48
+ source = { registry = "https://pypi.org/simple" }
49
+ sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 }
50
+ wheels = [
51
+ { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 },
52
+ ]
53
+
54
+ [[package]]
55
+ name = "pastel"
56
+ version = "0.2.1"
57
+ source = { registry = "https://pypi.org/simple" }
58
+ sdist = { url = "https://files.pythonhosted.org/packages/76/f1/4594f5e0fcddb6953e5b8fe00da8c317b8b41b547e2b3ae2da7512943c62/pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d", size = 7555 }
59
+ wheels = [
60
+ { url = "https://files.pythonhosted.org/packages/aa/18/a8444036c6dd65ba3624c63b734d3ba95ba63ace513078e1580590075d21/pastel-0.2.1-py2.py3-none-any.whl", hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364", size = 5955 },
61
+ ]
62
+
63
+ [[package]]
64
+ name = "pluggy"
65
+ version = "1.5.0"
66
+ source = { registry = "https://pypi.org/simple" }
67
+ sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 }
68
+ wheels = [
69
+ { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 },
70
+ ]
71
+
72
+ [[package]]
73
+ name = "poethepoet"
74
+ version = "0.31.1"
75
+ source = { registry = "https://pypi.org/simple" }
76
+ dependencies = [
77
+ { name = "pastel" },
78
+ { name = "pyyaml" },
79
+ ]
80
+ sdist = { url = "https://files.pythonhosted.org/packages/8f/96/15bce512c8027696b20586b18ac4b239afe8d312dbaa2a0099e8fb8f8424/poethepoet-0.31.1.tar.gz", hash = "sha256:d6b66074edf85daf115bb916eae0afd6387d19e1562e1c9ef7d61d5c585696aa", size = 61520 }
81
+ wheels = [
82
+ { url = "https://files.pythonhosted.org/packages/06/e1/04f56c9d848d6135ca3328c5a2ca84d3303c358ad7828db290385e36a8cc/poethepoet-0.31.1-py3-none-any.whl", hash = "sha256:7fdfa0ac6074be9936723e7231b5bfaad2923e96c674a9857e81d326cf8ccdc2", size = 80238 },
83
+ ]
84
+
85
+ [[package]]
86
+ name = "pytest"
87
+ version = "8.3.4"
88
+ source = { registry = "https://pypi.org/simple" }
89
+ dependencies = [
90
+ { name = "colorama", marker = "sys_platform == 'win32'" },
91
+ { name = "iniconfig" },
92
+ { name = "packaging" },
93
+ { name = "pluggy" },
94
+ ]
95
+ sdist = { url = "https://files.pythonhosted.org/packages/05/35/30e0d83068951d90a01852cb1cef56e5d8a09d20c7f511634cc2f7e0372a/pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761", size = 1445919 }
96
+ wheels = [
97
+ { url = "https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", size = 343083 },
98
+ ]
99
+
100
+ [[package]]
101
+ name = "pyyaml"
102
+ version = "6.0.2"
103
+ source = { registry = "https://pypi.org/simple" }
104
+ sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 }
105
+ wheels = [
106
+ { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 },
107
+ { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 },
108
+ { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 },
109
+ { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 },
110
+ { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 },
111
+ { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 },
112
+ { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 },
113
+ { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 },
114
+ { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 },
115
+ { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 },
116
+ { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 },
117
+ { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 },
118
+ { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 },
119
+ { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 },
120
+ { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 },
121
+ { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 },
122
+ { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 },
123
+ { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 },
124
+ ]
125
+
126
+ [[package]]
127
+ name = "ruff"
128
+ version = "0.8.4"
129
+ source = { registry = "https://pypi.org/simple" }
130
+ sdist = { url = "https://files.pythonhosted.org/packages/34/37/9c02181ef38d55b77d97c68b78e705fd14c0de0e5d085202bb2b52ce5be9/ruff-0.8.4.tar.gz", hash = "sha256:0d5f89f254836799af1615798caa5f80b7f935d7a670fad66c5007928e57ace8", size = 3402103 }
131
+ wheels = [
132
+ { url = "https://files.pythonhosted.org/packages/05/67/f480bf2f2723b2e49af38ed2be75ccdb2798fca7d56279b585c8f553aaab/ruff-0.8.4-py3-none-linux_armv6l.whl", hash = "sha256:58072f0c06080276804c6a4e21a9045a706584a958e644353603d36ca1eb8a60", size = 10546415 },
133
+ { url = "https://files.pythonhosted.org/packages/eb/7a/5aba20312c73f1ce61814e520d1920edf68ca3b9c507bd84d8546a8ecaa8/ruff-0.8.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ffb60904651c00a1e0b8df594591770018a0f04587f7deeb3838344fe3adabac", size = 10346113 },
134
+ { url = "https://files.pythonhosted.org/packages/76/f4/c41de22b3728486f0aa95383a44c42657b2db4062f3234ca36fc8cf52d8b/ruff-0.8.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6ddf5d654ac0d44389f6bf05cee4caeefc3132a64b58ea46738111d687352296", size = 9943564 },
135
+ { url = "https://files.pythonhosted.org/packages/0e/f0/afa0d2191af495ac82d4cbbfd7a94e3df6f62a04ca412033e073b871fc6d/ruff-0.8.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e248b1f0fa2749edd3350a2a342b67b43a2627434c059a063418e3d375cfe643", size = 10805522 },
136
+ { url = "https://files.pythonhosted.org/packages/12/57/5d1e9a0fd0c228e663894e8e3a8e7063e5ee90f8e8e60cf2085f362bfa1a/ruff-0.8.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf197b98ed86e417412ee3b6c893f44c8864f816451441483253d5ff22c0e81e", size = 10306763 },
137
+ { url = "https://files.pythonhosted.org/packages/04/df/f069fdb02e408be8aac6853583572a2873f87f866fe8515de65873caf6b8/ruff-0.8.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c41319b85faa3aadd4d30cb1cffdd9ac6b89704ff79f7664b853785b48eccdf3", size = 11359574 },
138
+ { url = "https://files.pythonhosted.org/packages/d3/04/37c27494cd02e4a8315680debfc6dfabcb97e597c07cce0044db1f9dfbe2/ruff-0.8.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:9f8402b7c4f96463f135e936d9ab77b65711fcd5d72e5d67597b543bbb43cf3f", size = 12094851 },
139
+ { url = "https://files.pythonhosted.org/packages/81/b1/c5d7fb68506cab9832d208d03ea4668da9a9887a4a392f4f328b1bf734ad/ruff-0.8.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4e56b3baa9c23d324ead112a4fdf20db9a3f8f29eeabff1355114dd96014604", size = 11655539 },
140
+ { url = "https://files.pythonhosted.org/packages/ef/38/8f8f2c8898dc8a7a49bc340cf6f00226917f0f5cb489e37075bcb2ce3671/ruff-0.8.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:736272574e97157f7edbbb43b1d046125fce9e7d8d583d5d65d0c9bf2c15addf", size = 12912805 },
141
+ { url = "https://files.pythonhosted.org/packages/06/dd/fa6660c279f4eb320788876d0cff4ea18d9af7d9ed7216d7bd66877468d0/ruff-0.8.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5fe710ab6061592521f902fca7ebcb9fabd27bc7c57c764298b1c1f15fff720", size = 11205976 },
142
+ { url = "https://files.pythonhosted.org/packages/a8/d7/de94cc89833b5de455750686c17c9e10f4e1ab7ccdc5521b8fe911d1477e/ruff-0.8.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:13e9ec6d6b55f6da412d59953d65d66e760d583dd3c1c72bf1f26435b5bfdbae", size = 10792039 },
143
+ { url = "https://files.pythonhosted.org/packages/6d/15/3e4906559248bdbb74854af684314608297a05b996062c9d72e0ef7c7097/ruff-0.8.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:97d9aefef725348ad77d6db98b726cfdb075a40b936c7984088804dfd38268a7", size = 10400088 },
144
+ { url = "https://files.pythonhosted.org/packages/a2/21/9ed4c0e8133cb4a87a18d470f534ad1a8a66d7bec493bcb8bda2d1a5d5be/ruff-0.8.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ab78e33325a6f5374e04c2ab924a3367d69a0da36f8c9cb6b894a62017506111", size = 10900814 },
145
+ { url = "https://files.pythonhosted.org/packages/0d/5d/122a65a18955bd9da2616b69bc839351f8baf23b2805b543aa2f0aed72b5/ruff-0.8.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:8ef06f66f4a05c3ddbc9121a8b0cecccd92c5bf3dd43b5472ffe40b8ca10f0f8", size = 11268828 },
146
+ { url = "https://files.pythonhosted.org/packages/43/a9/1676ee9106995381e3d34bccac5bb28df70194167337ed4854c20f27c7ba/ruff-0.8.4-py3-none-win32.whl", hash = "sha256:552fb6d861320958ca5e15f28b20a3d071aa83b93caee33a87b471f99a6c0835", size = 8805621 },
147
+ { url = "https://files.pythonhosted.org/packages/10/98/ed6b56a30ee76771c193ff7ceeaf1d2acc98d33a1a27b8479cbdb5c17a23/ruff-0.8.4-py3-none-win_amd64.whl", hash = "sha256:f21a1143776f8656d7f364bd264a9d60f01b7f52243fbe90e7670c0dfe0cf65d", size = 9660086 },
148
+ { url = "https://files.pythonhosted.org/packages/13/9f/026e18ca7d7766783d779dae5e9c656746c6ede36ef73c6d934aaf4a6dec/ruff-0.8.4-py3-none-win_arm64.whl", hash = "sha256:9183dd615d8df50defa8b1d9a074053891ba39025cf5ae88e8bcb52edcc4bf08", size = 9074500 },
149
+ ]
150
+
151
+ [[package]]
152
+ name = "toml-sort"
153
+ version = "0.24.2"
154
+ source = { registry = "https://pypi.org/simple" }
155
+ dependencies = [
156
+ { name = "tomlkit" },
157
+ ]
158
+ sdist = { url = "https://files.pythonhosted.org/packages/0a/55/b128ee446606e9f2e49582bb1e462a255317401fd7adb0b2114e50006d01/toml_sort-0.24.2.tar.gz", hash = "sha256:20cb7c5e9de9c871990f1594f028aaf8bd0f78d7ce37995a22289dc157a45b79", size = 17973 }
159
+ wheels = [
160
+ { url = "https://files.pythonhosted.org/packages/9b/55/7a7c02de848eef670bd018b62122ce32a6e227203e5a626c96d4935958a6/toml_sort-0.24.2-py3-none-any.whl", hash = "sha256:d81d299789a1fd9dd306a4021951eab5fc0c5486599e277fcf8142c7735f3308", size = 20162 },
161
+ ]
162
+
163
+ [[package]]
164
+ name = "tomlkit"
165
+ version = "0.13.2"
166
+ source = { registry = "https://pypi.org/simple" }
167
+ sdist = { url = "https://files.pythonhosted.org/packages/b1/09/a439bec5888f00a54b8b9f05fa94d7f901d6735ef4e55dcec9bc37b5d8fa/tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79", size = 192885 }
168
+ wheels = [
169
+ { url = "https://files.pythonhosted.org/packages/f9/b6/a447b5e4ec71e13871be01ba81f5dfc9d0af7e473da256ff46bc0e24026f/tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde", size = 37955 },
170
+ ]