paintress-cli 0.4.5__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,17 @@
1
+ """Paintress CLI - TUI reference implementation for pai-agent-sdk."""
2
+
3
+ import importlib.metadata
4
+
5
+ __all__ = ["__version__", "cli"]
6
+
7
+ try:
8
+ __version__ = importlib.metadata.version(__name__)
9
+ except importlib.metadata.PackageNotFoundError:
10
+ __version__ = "0.0.0" # Fallback for development mode
11
+
12
+
13
+ def cli() -> None:
14
+ """Run the paintress CLI and exit."""
15
+ # TODO: Implement TUI
16
+ print(f"paintress-cli v{__version__}")
17
+ print("TUI implementation coming soon...")
@@ -0,0 +1,6 @@
1
+ """Allow running paintress_cli as a module: python -m paintress_cli."""
2
+
3
+ from paintress_cli import cli
4
+
5
+ if __name__ == "__main__":
6
+ cli()
@@ -0,0 +1,66 @@
1
+ Metadata-Version: 2.4
2
+ Name: paintress-cli
3
+ Version: 0.4.5
4
+ Summary: TUI reference implementation for pai-agent-sdk
5
+ Project-URL: Repository, https://github.com/youware-labs/pai-agent-sdk
6
+ Author-email: youware <lab@youware.com>
7
+ License-File: LICENSE
8
+ Keywords: ai-agent,cli,python,tui
9
+ Classifier: Environment :: Console
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Requires-Python: <3.14,>=3.11
18
+ Requires-Dist: pai-agent-sdk[all]==0.4.5
19
+ Description-Content-Type: text/markdown
20
+
21
+ # Paintress CLI
22
+
23
+ TUI reference implementation for [pai-agent-sdk](https://github.com/youware-labs/pai-agent-sdk).
24
+
25
+ ## Usage
26
+
27
+ With uvx, run:
28
+
29
+ ```bash
30
+ uvx paintress-cli
31
+ ```
32
+
33
+ Or to install paintress-cli globally with uv, run:
34
+
35
+ ```bash
36
+ uv tool install paintress-cli
37
+ ...
38
+ paintress
39
+ ```
40
+
41
+ Or with pip, run:
42
+
43
+ ```bash
44
+ pip install paintress-cli
45
+ ...
46
+ paintress
47
+ ```
48
+
49
+ Or run as a module:
50
+
51
+ ```bash
52
+ python -m paintress_cli
53
+ ```
54
+
55
+ ## Development
56
+
57
+ This package is part of the pai-agent-sdk monorepo. To develop locally:
58
+
59
+ ```bash
60
+ cd pai-agent-sdk
61
+ uv sync --all-packages
62
+ ```
63
+
64
+ ## License
65
+
66
+ BSD 3-Clause License - see [LICENSE](LICENSE) for details.
@@ -0,0 +1,7 @@
1
+ paintress_cli/__init__.py,sha256=EwKbN_ir32EDiUycnbUQYIlq_4tGu5ASp4cN6raAMTU,478
2
+ paintress_cli/__main__.py,sha256=dWocp6tEJc1DtLJs4R6VMa__SqhiyVw-4vzTuJrcS8E,141
3
+ paintress_cli-0.4.5.dist-info/METADATA,sha256=htPYhRbGBR7ohps0hhjSk1AhZG7Bvki-PQvf6r_afec,1412
4
+ paintress_cli-0.4.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
5
+ paintress_cli-0.4.5.dist-info/entry_points.txt,sha256=IqXLqXgY2B7H2Of7gTwItTz8K6nUERibqIUr9RLTYKg,48
6
+ paintress_cli-0.4.5.dist-info/licenses/LICENSE,sha256=Gh-WF2knhQjzZe3Ry4B3ssWXTyc9tO8ppK20clZVlUo,1494
7
+ paintress_cli-0.4.5.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ paintress = paintress_cli:cli
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2026, YouWare
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.