pytest-confiq 0.0.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,21 @@
1
+ MIT License
2
+
3
+ Copyright © 2026 Kyle Oliver
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,122 @@
1
+ Metadata-Version: 2.4
2
+ Name: pytest-confiq
3
+ Version: 0.0.0
4
+ Summary: pytest-confiq
5
+ Author-email: Kyle Oliver <56kyleoliver@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/56kyle/pytest-confiq
8
+ Project-URL: Repository, https://github.com/56kyle/pytest-confiq
9
+ Keywords: pytest-confiq
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Development Status :: 1 - Planning
19
+ Requires-Python: <4.0,>=3.10
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: loguru>=0.7.3
23
+ Requires-Dist: platformdirs>=4.3.8
24
+ Requires-Dist: typer>=0.15.4
25
+ Requires-Dist: typing-extensions>=4.13.2
26
+ Dynamic: license-file
27
+
28
+ # pytest-confiq
29
+
30
+ pytest_confiq
31
+
32
+ ---
33
+
34
+ **[📚 View Documentation](https://pytest-confiq.readthedocs.io/)** | **[🐛 Report a Bug](https://github.com/56kyle/pytest-confiq/issues)** | **[✨ Request a Feature](https://github.com/56kyle/pytest-confiq/issues)**
35
+
36
+ ---
37
+
38
+ ## Installation
39
+
40
+ You can install `pytest_confiq` via [pip](pip-documentation) from PyPI:
41
+
42
+ ```bash
43
+ pip install pytest_confiq
44
+ ```
45
+
46
+ ### Installation for Development
47
+
48
+ To set up `pytest_confiq` for local development:
49
+
50
+ 1. Clone the repository:
51
+ ```bash
52
+ git clone https://github.com/56kyle/pytest-confiq.git
53
+ cd pytest-confiq
54
+ ```
55
+ 2. Install dependencies using [:term:`uv`](uv-documentation):
56
+ ```bash
57
+ uv sync
58
+ ```
59
+ 3. Install pre-commit hooks:
60
+ ```bash
61
+ uvx nox -s pre-commit -- install
62
+ ```
63
+
64
+ This sets up a virtual environment and installs core, development, and quality check dependencies.
65
+
66
+ ## Usage
67
+
68
+ (This section should explain how to use the generated application. Replace the content below with instructions specific to your project's functionality. If your project is a library, show import examples. If it's a CLI application, show command examples. Link to the full documentation for details.)
69
+
70
+ ### As a Library
71
+
72
+ ```python
73
+ # Example usage of your package as a library
74
+ # from pytest_confiq import some_function
75
+ # result = some_function()
76
+ # print(result)
77
+ ```
78
+
79
+ ### As a Command-Line Application
80
+
81
+ If your project defines command-line entry points in `pyproject.toml`:
82
+
83
+ ```bash
84
+ # Example usage of your CLI application
85
+ # pytest-confiq --help
86
+ # pytest-confiq do-something --input file.txt
87
+ ```
88
+
89
+ For detailed API documentation and CLI command references, see the **[Documentation][documentation]**.
90
+
91
+ ## Development Workflow
92
+
93
+ This project uses a robust set of tools for development, testing, and quality assurance. All significant automated tasks are run via [:term:`Nox`](nox-documentation), orchestrated by the central `noxfile.py`.
94
+
95
+ - **Run all checks (lint, typecheck, security):** `uvx nox -s check`
96
+ - **Run test suite with coverage:** `uvx nox -s test`
97
+ - **Build documentation:** `uvx nox -s docs`
98
+ - **Build package:** `uvx nox -s build`
99
+ - **See all available tasks:** `uvx nox -l`
100
+
101
+ Explore the `noxfile.py` and the project documentation for detailed information on the automated workflow.
102
+
103
+ ## Contributing
104
+
105
+ (This section should guide contributions _to this specific generated project_, not the template. It should refer to the project's `CODE_OF_CONDUCT.md` and link to a `CONTRIBUTING.md` specific to the project, if you choose to generate one.)
106
+
107
+ Report bugs or suggest features via the [issue tracker](https://github.com/56kyle/pytest-confiq/issues).
108
+
109
+ See [CONTRIBUTING.md](#) for contribution guidelines.
110
+
111
+ ## License
112
+
113
+ Distributed under the terms of the **MIT** license. See [LICENSE](LICENSE) for details.
114
+
115
+ ---
116
+
117
+ **This project was generated from the [cookiecutter-robust-python template][cookiecutter-robust-python].**
118
+
119
+ <!-- Reference Links -->
120
+
121
+ [cookiecutter-robust-python]: https://github.com/robust-python/cookiecutter-robust-python
122
+ [documentation]: https://pytest-confiq.readthedocs.io/
@@ -0,0 +1,95 @@
1
+ # pytest-confiq
2
+
3
+ pytest_confiq
4
+
5
+ ---
6
+
7
+ **[📚 View Documentation](https://pytest-confiq.readthedocs.io/)** | **[🐛 Report a Bug](https://github.com/56kyle/pytest-confiq/issues)** | **[✨ Request a Feature](https://github.com/56kyle/pytest-confiq/issues)**
8
+
9
+ ---
10
+
11
+ ## Installation
12
+
13
+ You can install `pytest_confiq` via [pip](pip-documentation) from PyPI:
14
+
15
+ ```bash
16
+ pip install pytest_confiq
17
+ ```
18
+
19
+ ### Installation for Development
20
+
21
+ To set up `pytest_confiq` for local development:
22
+
23
+ 1. Clone the repository:
24
+ ```bash
25
+ git clone https://github.com/56kyle/pytest-confiq.git
26
+ cd pytest-confiq
27
+ ```
28
+ 2. Install dependencies using [:term:`uv`](uv-documentation):
29
+ ```bash
30
+ uv sync
31
+ ```
32
+ 3. Install pre-commit hooks:
33
+ ```bash
34
+ uvx nox -s pre-commit -- install
35
+ ```
36
+
37
+ This sets up a virtual environment and installs core, development, and quality check dependencies.
38
+
39
+ ## Usage
40
+
41
+ (This section should explain how to use the generated application. Replace the content below with instructions specific to your project's functionality. If your project is a library, show import examples. If it's a CLI application, show command examples. Link to the full documentation for details.)
42
+
43
+ ### As a Library
44
+
45
+ ```python
46
+ # Example usage of your package as a library
47
+ # from pytest_confiq import some_function
48
+ # result = some_function()
49
+ # print(result)
50
+ ```
51
+
52
+ ### As a Command-Line Application
53
+
54
+ If your project defines command-line entry points in `pyproject.toml`:
55
+
56
+ ```bash
57
+ # Example usage of your CLI application
58
+ # pytest-confiq --help
59
+ # pytest-confiq do-something --input file.txt
60
+ ```
61
+
62
+ For detailed API documentation and CLI command references, see the **[Documentation][documentation]**.
63
+
64
+ ## Development Workflow
65
+
66
+ This project uses a robust set of tools for development, testing, and quality assurance. All significant automated tasks are run via [:term:`Nox`](nox-documentation), orchestrated by the central `noxfile.py`.
67
+
68
+ - **Run all checks (lint, typecheck, security):** `uvx nox -s check`
69
+ - **Run test suite with coverage:** `uvx nox -s test`
70
+ - **Build documentation:** `uvx nox -s docs`
71
+ - **Build package:** `uvx nox -s build`
72
+ - **See all available tasks:** `uvx nox -l`
73
+
74
+ Explore the `noxfile.py` and the project documentation for detailed information on the automated workflow.
75
+
76
+ ## Contributing
77
+
78
+ (This section should guide contributions _to this specific generated project_, not the template. It should refer to the project's `CODE_OF_CONDUCT.md` and link to a `CONTRIBUTING.md` specific to the project, if you choose to generate one.)
79
+
80
+ Report bugs or suggest features via the [issue tracker](https://github.com/56kyle/pytest-confiq/issues).
81
+
82
+ See [CONTRIBUTING.md](#) for contribution guidelines.
83
+
84
+ ## License
85
+
86
+ Distributed under the terms of the **MIT** license. See [LICENSE](LICENSE) for details.
87
+
88
+ ---
89
+
90
+ **This project was generated from the [cookiecutter-robust-python template][cookiecutter-robust-python].**
91
+
92
+ <!-- Reference Links -->
93
+
94
+ [cookiecutter-robust-python]: https://github.com/robust-python/cookiecutter-robust-python
95
+ [documentation]: https://pytest-confiq.readthedocs.io/
@@ -0,0 +1,69 @@
1
+ [project]
2
+ name = "pytest-confiq"
3
+ version = "0.0.0"
4
+ description = "pytest-confiq"
5
+ authors = [
6
+ { name = "Kyle Oliver", email = "56kyleoliver@gmail.com" },
7
+ ]
8
+ license = "MIT"
9
+ license-files = ["LICENSE"]
10
+ readme = "README.md"
11
+ requires-python = ">=3.10,<4.0"
12
+ keywords = [
13
+ "pytest-confiq",
14
+ ]
15
+ classifiers = [
16
+ "Operating System :: OS Independent",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3 :: Only",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
24
+ "Development Status :: 1 - Planning"
25
+ ]
26
+ dependencies = [
27
+ "loguru>=0.7.3",
28
+ "platformdirs>=4.3.8",
29
+ "typer>=0.15.4",
30
+ "typing-extensions>=4.13.2"
31
+ ]
32
+
33
+ [dependency-groups]
34
+ dev = [
35
+ "commitizen>=4.7.0",
36
+ "nox>=2025.5.1",
37
+ "pre-commit>=4.2.0",
38
+ "pre-commit-hooks>=5.0.0",
39
+ "ruff>=0.11.9",
40
+ "bandit>=1.8.3",
41
+ "pip-audit>=2.9.0",
42
+ "pytest>=8.3.5",
43
+ "pytest-cov>=6.1.1",
44
+ "basedpyright>=1.34.0",
45
+ ]
46
+ docs = [
47
+ "furo>=2024.8.6",
48
+ "myst-parser>=3.0.1",
49
+ "sphinx>=7.4.7",
50
+ "sphinx-autobuild>=2024.10.3",
51
+ "sphinx-autodoc-typehints>=2.3.0",
52
+ "sphinx-copybutton>=0.5.2",
53
+ "sphinx-tabs>=3.4.7",
54
+ "sphinxcontrib-typer>=0.5.1",
55
+ ]
56
+
57
+ [project.urls]
58
+ Homepage = "https://github.com/56kyle/pytest-confiq"
59
+ Repository = "https://github.com/56kyle/pytest-confiq"
60
+
61
+ [[tool.uv.index]]
62
+ name = "testpypi"
63
+ url = "https://test.pypi.org/simple/"
64
+ publish-url = "https://test.pypi.org/legacy/"
65
+ explicit = true
66
+
67
+ [build-system]
68
+ requires = ["setuptools>=61.0"]
69
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ """pytest-confiq."""
@@ -0,0 +1,15 @@
1
+ """Command-line interface."""
2
+
3
+ import typer
4
+
5
+
6
+ app: typer.Typer = typer.Typer()
7
+
8
+
9
+ @app.command(name="pytest-confiq")
10
+ def main() -> None:
11
+ """pytest-confiq."""
12
+
13
+
14
+ if __name__ == "__main__":
15
+ app() # pragma: no cover
File without changes
@@ -0,0 +1,122 @@
1
+ Metadata-Version: 2.4
2
+ Name: pytest-confiq
3
+ Version: 0.0.0
4
+ Summary: pytest-confiq
5
+ Author-email: Kyle Oliver <56kyleoliver@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/56kyle/pytest-confiq
8
+ Project-URL: Repository, https://github.com/56kyle/pytest-confiq
9
+ Keywords: pytest-confiq
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Development Status :: 1 - Planning
19
+ Requires-Python: <4.0,>=3.10
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: loguru>=0.7.3
23
+ Requires-Dist: platformdirs>=4.3.8
24
+ Requires-Dist: typer>=0.15.4
25
+ Requires-Dist: typing-extensions>=4.13.2
26
+ Dynamic: license-file
27
+
28
+ # pytest-confiq
29
+
30
+ pytest_confiq
31
+
32
+ ---
33
+
34
+ **[📚 View Documentation](https://pytest-confiq.readthedocs.io/)** | **[🐛 Report a Bug](https://github.com/56kyle/pytest-confiq/issues)** | **[✨ Request a Feature](https://github.com/56kyle/pytest-confiq/issues)**
35
+
36
+ ---
37
+
38
+ ## Installation
39
+
40
+ You can install `pytest_confiq` via [pip](pip-documentation) from PyPI:
41
+
42
+ ```bash
43
+ pip install pytest_confiq
44
+ ```
45
+
46
+ ### Installation for Development
47
+
48
+ To set up `pytest_confiq` for local development:
49
+
50
+ 1. Clone the repository:
51
+ ```bash
52
+ git clone https://github.com/56kyle/pytest-confiq.git
53
+ cd pytest-confiq
54
+ ```
55
+ 2. Install dependencies using [:term:`uv`](uv-documentation):
56
+ ```bash
57
+ uv sync
58
+ ```
59
+ 3. Install pre-commit hooks:
60
+ ```bash
61
+ uvx nox -s pre-commit -- install
62
+ ```
63
+
64
+ This sets up a virtual environment and installs core, development, and quality check dependencies.
65
+
66
+ ## Usage
67
+
68
+ (This section should explain how to use the generated application. Replace the content below with instructions specific to your project's functionality. If your project is a library, show import examples. If it's a CLI application, show command examples. Link to the full documentation for details.)
69
+
70
+ ### As a Library
71
+
72
+ ```python
73
+ # Example usage of your package as a library
74
+ # from pytest_confiq import some_function
75
+ # result = some_function()
76
+ # print(result)
77
+ ```
78
+
79
+ ### As a Command-Line Application
80
+
81
+ If your project defines command-line entry points in `pyproject.toml`:
82
+
83
+ ```bash
84
+ # Example usage of your CLI application
85
+ # pytest-confiq --help
86
+ # pytest-confiq do-something --input file.txt
87
+ ```
88
+
89
+ For detailed API documentation and CLI command references, see the **[Documentation][documentation]**.
90
+
91
+ ## Development Workflow
92
+
93
+ This project uses a robust set of tools for development, testing, and quality assurance. All significant automated tasks are run via [:term:`Nox`](nox-documentation), orchestrated by the central `noxfile.py`.
94
+
95
+ - **Run all checks (lint, typecheck, security):** `uvx nox -s check`
96
+ - **Run test suite with coverage:** `uvx nox -s test`
97
+ - **Build documentation:** `uvx nox -s docs`
98
+ - **Build package:** `uvx nox -s build`
99
+ - **See all available tasks:** `uvx nox -l`
100
+
101
+ Explore the `noxfile.py` and the project documentation for detailed information on the automated workflow.
102
+
103
+ ## Contributing
104
+
105
+ (This section should guide contributions _to this specific generated project_, not the template. It should refer to the project's `CODE_OF_CONDUCT.md` and link to a `CONTRIBUTING.md` specific to the project, if you choose to generate one.)
106
+
107
+ Report bugs or suggest features via the [issue tracker](https://github.com/56kyle/pytest-confiq/issues).
108
+
109
+ See [CONTRIBUTING.md](#) for contribution guidelines.
110
+
111
+ ## License
112
+
113
+ Distributed under the terms of the **MIT** license. See [LICENSE](LICENSE) for details.
114
+
115
+ ---
116
+
117
+ **This project was generated from the [cookiecutter-robust-python template][cookiecutter-robust-python].**
118
+
119
+ <!-- Reference Links -->
120
+
121
+ [cookiecutter-robust-python]: https://github.com/robust-python/cookiecutter-robust-python
122
+ [documentation]: https://pytest-confiq.readthedocs.io/
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/pytest_confiq/__init__.py
5
+ src/pytest_confiq/__main__.py
6
+ src/pytest_confiq/py.typed
7
+ src/pytest_confiq.egg-info/PKG-INFO
8
+ src/pytest_confiq.egg-info/SOURCES.txt
9
+ src/pytest_confiq.egg-info/dependency_links.txt
10
+ src/pytest_confiq.egg-info/requires.txt
11
+ src/pytest_confiq.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ loguru>=0.7.3
2
+ platformdirs>=4.3.8
3
+ typer>=0.15.4
4
+ typing-extensions>=4.13.2
@@ -0,0 +1 @@
1
+ pytest_confiq