shell-use 0.0.1__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,4 @@
1
+ /target
2
+ *.gif
3
+ *.trace
4
+ .shell-use/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
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,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: shell-use
3
+ Version: 0.0.1
4
+ Summary: A headless terminal CLI + daemon for driving, asserting on, and recording shells
5
+ Project-URL: Homepage, https://github.com/microsoft/shell-use
6
+ Project-URL: Repository, https://github.com/microsoft/shell-use
7
+ Project-URL: Issues, https://github.com/microsoft/shell-use/issues
8
+ Author: Microsoft Corporation
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: cli,pty,shell,terminal,testing,tui
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Software Development :: Testing
17
+ Classifier: Topic :: Terminals
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # shell-use
22
+
23
+ `shell-use` is a Rust-powered CLI for controlling, inspecting, testing, and recording shell sessions and terminal apps.
24
+
25
+ This package reserves the `shell-use` name on PyPI. See the project repository for the actual tool and installation instructions: https://github.com/microsoft/shell-use
@@ -0,0 +1,5 @@
1
+ # shell-use
2
+
3
+ `shell-use` is a Rust-powered CLI for controlling, inspecting, testing, and recording shell sessions and terminal apps.
4
+
5
+ This package reserves the `shell-use` name on PyPI. See the project repository for the actual tool and installation instructions: https://github.com/microsoft/shell-use
@@ -0,0 +1,5 @@
1
+ * Creating isolated environment: venv+pip...
2
+ * Installing packages in isolated environment:
3
+ - hatchling
4
+ * Getting build dependencies for sdist...
5
+ * Building sdist...
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "shell-use"
7
+ version = "0.0.1"
8
+ description = "A headless terminal CLI + daemon for driving, asserting on, and recording shells"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [{ name = "Microsoft Corporation" }]
14
+ keywords = ["terminal", "shell", "cli", "tui", "pty", "testing"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Software Development :: Testing",
21
+ "Topic :: Terminals",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/microsoft/shell-use"
26
+ Repository = "https://github.com/microsoft/shell-use"
27
+ Issues = "https://github.com/microsoft/shell-use/issues"
28
+
29
+ [tool.hatch.build.targets.wheel]
30
+ packages = ["src/shell_use"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"