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