robotter 0.1.0__py3-none-any.whl

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,11 @@
1
+ """A sample file generated by copier - this file is safe to delete."""
2
+
3
+
4
+ def Add(a: int, b: int) -> int:
5
+ """Add two numbers."""
6
+ return a + b
7
+
8
+
9
+ def Subtract(a: int, b: int) -> int:
10
+ """Subtract two numbers."""
11
+ return a - b
robotter/__init__.py ADDED
@@ -0,0 +1,6 @@
1
+ # noqa: D104
2
+
3
+ from importlib.metadata import version
4
+
5
+
6
+ __version__ = version("robotter")
robotter/py.typed ADDED
File without changes
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.3
2
+ Name: robotter
3
+ Version: 0.1.0
4
+ Summary: Composition for GenAI dotfiles.
5
+ Author: David Brownell
6
+ Author-email: David Brownell <github@davidbrownell.com>
7
+ License: MIT
8
+ Classifier: Operating System :: MacOS
9
+ Classifier: Operating System :: Microsoft :: Windows
10
+ Classifier: Operating System :: POSIX :: Linux
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.14
13
+ Requires-Python: >=3.14
14
+ Project-URL: Homepage, https://github.com/davidbrownell/robotter
15
+ Project-URL: Documentation, https://github.com/davidbrownell/robotter
16
+ Project-URL: Repository, https://github.com/davidbrownell/robotter
17
+ Description-Content-Type: text/markdown
18
+
19
+ **Project:**
20
+ [![License](https://img.shields.io/github/license/davidbrownell/robotter?color=dark-green)](https://github.com/davidbrownell/robotter/blob/master/LICENSE)
21
+
22
+ **Package:**
23
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/robotter?color=dark-green)](https://pypi.org/project/robotter/)
24
+ [![PyPI - Version](https://img.shields.io/pypi/v/robotter?color=dark-green)](https://pypi.org/project/robotter/)
25
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/robotter)](https://pypistats.org/packages/robotter)
26
+
27
+ **Development:**
28
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
29
+ [![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
30
+ [![ty](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ty/main/assets/badge/v0.json)](https://github.com/astral-sh/ty)
31
+ [![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://docs.pytest.org/)
32
+ [![CI](https://github.com/davidbrownell/robotter/actions/workflows/CICD.yml/badge.svg)](https://github.com/davidbrownell/robotter/actions/workflows/CICD.yml)
33
+ [![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/davidbrownell/f15146b1b8fdc0a5d45ac0eb786a84f7/raw/robotter_code_coverage.json)](https://github.com/davidbrownell/robotter/actions)
34
+ [![GitHub commit activity](https://img.shields.io/github/commit-activity/y/davidbrownell/robotter?color=dark-green)](https://github.com/davidbrownell/robotter/commits/main/)
35
+
36
+ <!-- Content above this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->
37
+
38
+ ## Contents
39
+ - [Overview](#overview)
40
+ - [Installation](#installation)
41
+ - [Development](#development)
42
+ - [Additional Information](#additional-information)
43
+ - [License](#license)
44
+
45
+ ## Overview
46
+ TODO: Complete this section
47
+
48
+ ### How to use `robotter`
49
+ TODO: Complete this section
50
+
51
+ <!-- Content below this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->
52
+
53
+ ## Installation
54
+
55
+ | Installation Method | Command |
56
+ | --- | --- |
57
+ | Via [uv](https://github.com/astral-sh/uv) | `uv add robotter` |
58
+ | Via [pip](https://pip.pypa.io/en/stable/) | `pip install robotter` |
59
+
60
+ ### Verifying Signed Artifacts
61
+ Artifacts are signed and verified using [py-minisign](https://github.com/x13a/py-minisign) and the public key in the file `./minisign_key.pub`.
62
+
63
+ To verify that an artifact is valid, visit [the latest release](https://github.com/davidbrownell/robotter/releases/latest) and download the `.minisign` signature file that corresponds to the artifact, then run the following command, replacing `<filename>` with the name of the artifact to be verified:
64
+
65
+ ```shell
66
+ uv run --with py-minisign python -c "import minisign; minisign.PublicKey.from_file('minisign_key.pub').verify_file('<filename>'); print('The file has been verified.')"
67
+ ```
68
+
69
+ ## Development
70
+ Please visit [Contributing](https://github.com/davidbrownell/robotter/blob/main/CONTRIBUTING.md) and [Development](https://github.com/davidbrownell/robotter/blob/main/DEVELOPMENT.md) for information on contributing to this project.
71
+
72
+ ## Additional Information
73
+ Additional information can be found at these locations.
74
+
75
+ | Title | Document | Description |
76
+ | --- | --- | --- |
77
+ | Code of Conduct | [CODE_OF_CONDUCT.md](https://github.com/davidbrownell/robotter/blob/main/CODE_OF_CONDUCT.md) | Information about the norms, rules, and responsibilities we adhere to when participating in this open source community. |
78
+ | Contributing | [CONTRIBUTING.md](https://github.com/davidbrownell/robotter/blob/main/CONTRIBUTING.md) | Information about contributing to this project. |
79
+ | Development | [DEVELOPMENT.md](https://github.com/davidbrownell/robotter/blob/main/DEVELOPMENT.md) | Information about development activities involved in making changes to this project. |
80
+ | Governance | [GOVERNANCE.md](https://github.com/davidbrownell/robotter/blob/main/GOVERNANCE.md) | Information about how this project is governed. |
81
+ | Maintainers | [MAINTAINERS.md](https://github.com/davidbrownell/robotter/blob/main/MAINTAINERS.md) | Information about individuals who maintain this project. |
82
+ | Security | [SECURITY.md](https://github.com/davidbrownell/robotter/blob/main/SECURITY.md) | Information about how to privately report security issues associated with this project. |
83
+
84
+ ## License
85
+ `robotter` is licensed under the <a href="https://choosealicense.com/licenses/MIT/" target="_blank">MIT</a> license.
@@ -0,0 +1,6 @@
1
+ robotter/UvScaffolding_sample_file.py,sha256=SN-2kAfeHK9MIONxV5ezVkYctXyIf-XyzSUFYPfRdG4,237
2
+ robotter/__init__.py,sha256=e3HZxjcBDRBzijLBxkR1l3X0YOTxeESbfageyKW8lg4,89
3
+ robotter/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ robotter-0.1.0.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
5
+ robotter-0.1.0.dist-info/METADATA,sha256=57S5AjLahsR8mz8CNKb_6ULP7ULnJDj7anpYj46Zd5s,5440
6
+ robotter-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.7
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any