pytest-max-warnings 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,13 @@
1
+ # http://editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ charset = utf-8
7
+ end_of_line = lf
8
+ indent_style = space
9
+ insert_final_newline = true
10
+ trim_trailing_whitespace = true
11
+
12
+ [*.py]
13
+ indent_size = 4
@@ -0,0 +1,36 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ branches:
9
+ - main
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+
15
+ strategy:
16
+ matrix:
17
+ python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18
+
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ with:
22
+ persist-credentials: false
23
+
24
+ - name: Install uv
25
+ uses: astral-sh/setup-uv@v3
26
+
27
+ - name: "Set up Python"
28
+ uses: actions/setup-python@v5
29
+ with:
30
+ python-version: ${{ matrix.python-version }}
31
+
32
+ - name: Install the project
33
+ run: uv sync --all-extras --dev
34
+
35
+ - name: Run tests
36
+ run: uv run pytest tests
@@ -0,0 +1,41 @@
1
+ name: Build
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ pypi-publish:
10
+ name: upload release to PyPI
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ # IMPORTANT: this permission is mandatory for trusted publishing
14
+ id-token: write
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ with:
19
+ persist-credentials: false
20
+
21
+ - name: Install uv
22
+ uses: astral-sh/setup-uv@v3
23
+
24
+ - name: "Set up Python"
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: "3.9"
28
+
29
+ - name: Install the project
30
+ run: uv sync --all-extras --dev
31
+
32
+ - name: Build package distributions
33
+ run: uv build
34
+
35
+ - name: Upload artifacts
36
+ uses: actions/upload-artifact@v4
37
+ with:
38
+ path: dist/*
39
+
40
+ - name: Publish package distributions to PyPI
41
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,165 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
+ .pdm.toml
111
+ .pdm-python
112
+ .pdm-build/
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
+ __pypackages__/
116
+
117
+ # Celery stuff
118
+ celerybeat-schedule
119
+ celerybeat.pid
120
+
121
+ # SageMath parsed files
122
+ *.sage.py
123
+
124
+ # Environments
125
+ .env
126
+ .venv
127
+ env/
128
+ venv/
129
+ ENV/
130
+ env.bak/
131
+ venv.bak/
132
+
133
+ # Spyder project settings
134
+ .spyderproject
135
+ .spyproject
136
+
137
+ # Rope project settings
138
+ .ropeproject
139
+
140
+ # mkdocs documentation
141
+ /site
142
+
143
+ # mypy
144
+ .mypy_cache/
145
+ .dmypy.json
146
+ dmypy.json
147
+
148
+ # Pyre type checker
149
+ .pyre/
150
+
151
+ # pytype static type analyzer
152
+ .pytype/
153
+
154
+ # Cython debug symbols
155
+ cython_debug/
156
+
157
+ # ruff formatter
158
+ .ruff_cache/
159
+
160
+ # PyCharm
161
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
162
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
163
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
164
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
165
+ #.idea/
@@ -0,0 +1,7 @@
1
+ {
2
+ "python.testing.pytestArgs": [
3
+ "tests"
4
+ ],
5
+ "python.testing.unittestEnabled": false,
6
+ "python.testing.pytestEnabled": true
7
+ }
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Mike Fiedler
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.
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.3
2
+ Name: pytest-max-warnings
3
+ Version: 0.1.0
4
+ Summary: A Pytest plugin to exit non-zero exit code when the configured maximum warnings has been exceeded.
5
+ Project-URL: Repository, https://github.com/miketheman/pytest-max-warnings
6
+ Author-email: Mike Fiedler <miketheman@gmail.com>
7
+ License-Expression: MIT
8
+ License-File: LICENSE
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Framework :: Pytest
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: Implementation :: CPython
22
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
23
+ Classifier: Topic :: Software Development :: Testing
24
+ Classifier: Typing :: Typed
25
+ Requires-Python: >=3.9
26
+ Requires-Dist: pytest>=8.3.3
27
+ Description-Content-Type: text/markdown
28
+
29
+ # pytest-max-warnings
30
+
31
+ A Pytest plugin to exit non-zero exit code
32
+ when the configured maximum warnings has been exceeded.
33
+
34
+ ## Installation
35
+
36
+ You can install "pytest-max-warnings" via [pip](https://pypi.org/project/pytest-max-warnings/):
37
+
38
+ ```bash
39
+ pip install pytest-max-warnings
40
+ ```
41
+
42
+ or any other package manager you prefer.
43
+
44
+ ## Usage
45
+
46
+ You can set the maximum number of warnings allowed by using the `--max-warnings` option:
47
+
48
+ ```bash
49
+ pytest --max-warnings 10
50
+ ```
51
+
52
+ If the number of warnings exceeds the maximum, the test run will exit with a non-zero exit code.
53
+
54
+ ## License
55
+
56
+ Distributed under the terms of the MIT license, "pytest-max-warnings" is free and open source software.
57
+ See [LICENSE](./LICENSE) for more details.
58
+
59
+ ## Authors
60
+
61
+ - [@miketheman](https://github.com/miketheman)
@@ -0,0 +1,33 @@
1
+ # pytest-max-warnings
2
+
3
+ A Pytest plugin to exit non-zero exit code
4
+ when the configured maximum warnings has been exceeded.
5
+
6
+ ## Installation
7
+
8
+ You can install "pytest-max-warnings" via [pip](https://pypi.org/project/pytest-max-warnings/):
9
+
10
+ ```bash
11
+ pip install pytest-max-warnings
12
+ ```
13
+
14
+ or any other package manager you prefer.
15
+
16
+ ## Usage
17
+
18
+ You can set the maximum number of warnings allowed by using the `--max-warnings` option:
19
+
20
+ ```bash
21
+ pytest --max-warnings 10
22
+ ```
23
+
24
+ If the number of warnings exceeds the maximum, the test run will exit with a non-zero exit code.
25
+
26
+ ## License
27
+
28
+ Distributed under the terms of the MIT license, "pytest-max-warnings" is free and open source software.
29
+ See [LICENSE](./LICENSE) for more details.
30
+
31
+ ## Authors
32
+
33
+ - [@miketheman](https://github.com/miketheman)
@@ -0,0 +1,40 @@
1
+ [project]
2
+ name = "pytest-max-warnings"
3
+ version = "0.1.0"
4
+ description = "A Pytest plugin to exit non-zero exit code when the configured maximum warnings has been exceeded."
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Mike Fiedler", email = "miketheman@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.9"
10
+ dependencies = [
11
+ "pytest>=8.3.3",
12
+ ]
13
+ license = "MIT"
14
+ classifiers = [
15
+ "Framework :: Pytest",
16
+ "Development Status :: 4 - Beta",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Topic :: Software Development :: Testing",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Programming Language :: Python :: 3.13",
27
+ "Programming Language :: Python :: 3 :: Only",
28
+ "Programming Language :: Python :: Implementation :: CPython",
29
+ "Programming Language :: Python :: Implementation :: PyPy",
30
+ "Typing :: Typed",
31
+ ]
32
+ [project.urls]
33
+ Repository = "https://github.com/miketheman/pytest-max-warnings"
34
+
35
+ [project.entry-points.pytest11]
36
+ max-warnings = "pytest_max_warnings.plugin"
37
+
38
+ [build-system]
39
+ requires = ["hatchling"]
40
+ build-backend = "hatchling.build"
@@ -0,0 +1,44 @@
1
+ from __future__ import annotations
2
+
3
+ import pytest
4
+
5
+
6
+ _STASH_KEY = pytest.StashKey["bool"]()
7
+
8
+
9
+ def pytest_addoption(parser: pytest.Parser) -> None:
10
+ group = parser.getgroup("pytest-max-warnings")
11
+ group.addoption(
12
+ "--max-warnings",
13
+ action="store",
14
+ type=int,
15
+ default=None,
16
+ help="Max number of warnings before failing",
17
+ )
18
+
19
+
20
+ @pytest.hookimpl(trylast=True)
21
+ def pytest_sessionfinish(session: pytest.Session, exitstatus: int) -> None:
22
+ max_warnings = session.config.option.max_warnings
23
+ terminal_reporter = session.config.pluginmanager.get_plugin("terminalreporter")
24
+ assert terminal_reporter is not None
25
+
26
+ warnings_summary = terminal_reporter.stats.get("warnings", [])
27
+
28
+ if max_warnings is not None and len(warnings_summary) > max_warnings:
29
+ session.exitstatus = 100
30
+ session.config.stash[_STASH_KEY] = True
31
+
32
+
33
+ def pytest_terminal_summary(terminalreporter, exitstatus, config):
34
+ max_warnings = config.option.max_warnings
35
+ warnings_summary = terminalreporter.stats.get("warnings", [])
36
+
37
+ exceeded_max_warnings = config.stash.get(_STASH_KEY, False)
38
+ if not exceeded_max_warnings:
39
+ return
40
+
41
+ terminalreporter.write_sep("=", "pytest-max-warnings")
42
+ terminalreporter.write_line(
43
+ f"ERROR: Exceeded the maximum allowed warnings: {len(warnings_summary)} > {max_warnings}"
44
+ )
@@ -0,0 +1,6 @@
1
+ """
2
+ Entry point for test-wide configuration
3
+ """
4
+
5
+ # https://docs.pytest.org/en/stable/how-to/writing_plugins.html#testing-plugins
6
+ pytest_plugins = ["pytester"]
@@ -0,0 +1,58 @@
1
+ def test_help_message(pytester):
2
+ result = pytester.runpytest("--help")
3
+
4
+ result.stdout.fnmatch_lines(
5
+ [
6
+ "pytest-max-warnings:",
7
+ "*--max-warnings=MAX_WARNINGS",
8
+ "*Max number of warnings before failing*",
9
+ ]
10
+ )
11
+
12
+
13
+ def test_captures_warning_natively(pytester):
14
+ pytester.makepyfile(
15
+ """
16
+ import warnings
17
+
18
+ def test_emit_warnings():
19
+ warnings.warn("Warning")
20
+ warnings.warn("Warning")
21
+ """
22
+ )
23
+
24
+ result = pytester.runpytest()
25
+ result.assert_outcomes(passed=1, warnings=2)
26
+
27
+
28
+ def test_does_not_exceed_max_warnings(pytester):
29
+ pytester.makepyfile(
30
+ """
31
+ import warnings
32
+
33
+ def test_emit_warnings():
34
+ warnings.warn("Warning")
35
+ warnings.warn("Warning")
36
+ """
37
+ )
38
+
39
+ result = pytester.runpytest("--max-warnings=2")
40
+ result.assert_outcomes(passed=1, warnings=2)
41
+ assert result.ret == 0
42
+
43
+
44
+ def test_exceeds_max_warnings(pytester):
45
+ pytester.makepyfile(
46
+ """
47
+ import warnings
48
+
49
+ def test_emit_warnings():
50
+ warnings.warn("Warning")
51
+ warnings.warn("Warning")
52
+ """
53
+ )
54
+
55
+ result = pytester.runpytest("--max-warnings=1")
56
+ result.assert_outcomes(passed=1, warnings=2)
57
+ assert result.ret == 100
58
+ result.stdout.fnmatch_lines(["*Exceeded the maximum allowed warnings: 2 > 1*"])
@@ -0,0 +1,84 @@
1
+ version = 1
2
+ requires-python = ">=3.9"
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 = "exceptiongroup"
15
+ version = "1.2.2"
16
+ source = { registry = "https://pypi.org/simple" }
17
+ sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 }
18
+ wheels = [
19
+ { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 },
20
+ ]
21
+
22
+ [[package]]
23
+ name = "iniconfig"
24
+ version = "2.0.0"
25
+ source = { registry = "https://pypi.org/simple" }
26
+ sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 }
27
+ wheels = [
28
+ { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 },
29
+ ]
30
+
31
+ [[package]]
32
+ name = "packaging"
33
+ version = "24.1"
34
+ source = { registry = "https://pypi.org/simple" }
35
+ sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 }
36
+ wheels = [
37
+ { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 },
38
+ ]
39
+
40
+ [[package]]
41
+ name = "pluggy"
42
+ version = "1.5.0"
43
+ source = { registry = "https://pypi.org/simple" }
44
+ sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 }
45
+ wheels = [
46
+ { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 },
47
+ ]
48
+
49
+ [[package]]
50
+ name = "pytest"
51
+ version = "8.3.3"
52
+ source = { registry = "https://pypi.org/simple" }
53
+ dependencies = [
54
+ { name = "colorama", marker = "sys_platform == 'win32'" },
55
+ { name = "exceptiongroup", marker = "python_full_version < '3.11'" },
56
+ { name = "iniconfig" },
57
+ { name = "packaging" },
58
+ { name = "pluggy" },
59
+ { name = "tomli", marker = "python_full_version < '3.11'" },
60
+ ]
61
+ sdist = { url = "https://files.pythonhosted.org/packages/8b/6c/62bbd536103af674e227c41a8f3dcd022d591f6eed5facb5a0f31ee33bbc/pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181", size = 1442487 }
62
+ wheels = [
63
+ { url = "https://files.pythonhosted.org/packages/6b/77/7440a06a8ead44c7757a64362dd22df5760f9b12dc5f11b6188cd2fc27a0/pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2", size = 342341 },
64
+ ]
65
+
66
+ [[package]]
67
+ name = "pytest-max-warnings"
68
+ version = "0.1.0"
69
+ source = { editable = "." }
70
+ dependencies = [
71
+ { name = "pytest" },
72
+ ]
73
+
74
+ [package.metadata]
75
+ requires-dist = [{ name = "pytest", specifier = ">=8.3.3" }]
76
+
77
+ [[package]]
78
+ name = "tomli"
79
+ version = "2.0.2"
80
+ source = { registry = "https://pypi.org/simple" }
81
+ sdist = { url = "https://files.pythonhosted.org/packages/35/b9/de2a5c0144d7d75a57ff355c0c24054f965b2dc3036456ae03a51ea6264b/tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed", size = 16096 }
82
+ wheels = [
83
+ { url = "https://files.pythonhosted.org/packages/cf/db/ce8eda256fa131af12e0a76d481711abe4681b6923c27efb9a255c9e4594/tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38", size = 13237 },
84
+ ]