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