shellcove 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.
- shellcove-0.0.1/PKG-INFO +24 -0
- shellcove-0.0.1/README.md +13 -0
- shellcove-0.0.1/pyproject.toml +17 -0
- shellcove-0.0.1/shellcove/__init__.py +3 -0
shellcove-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shellcove
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The communication layer between you and agentic workflows across hosts.
|
|
5
|
+
Project-URL: Homepage, https://shellcove.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/tobiaskatsch/shellcove
|
|
7
|
+
Author: Tobias Katsch
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Shell Cove
|
|
13
|
+
|
|
14
|
+
> The communication layer between you and agentic workflows across hosts.
|
|
15
|
+
|
|
16
|
+
Shell Cove is under active development. Visit [shellcove.ai](https://shellcove.ai) for more information.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install shellcove
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Note:** This is an early placeholder release. The full package is coming soon.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Shell Cove
|
|
2
|
+
|
|
3
|
+
> The communication layer between you and agentic workflows across hosts.
|
|
4
|
+
|
|
5
|
+
Shell Cove is under active development. Visit [shellcove.ai](https://shellcove.ai) for more information.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install shellcove
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
**Note:** This is an early placeholder release. The full package is coming soon.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "shellcove"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "The communication layer between you and agentic workflows across hosts."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = {text = "MIT"}
|
|
8
|
+
authors = [{name = "Tobias Katsch"}]
|
|
9
|
+
urls.Homepage = "https://shellcove.ai"
|
|
10
|
+
urls.Repository = "https://github.com/tobiaskatsch/shellcove"
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["hatchling"]
|
|
14
|
+
build-backend = "hatchling.build"
|
|
15
|
+
|
|
16
|
+
[tool.hatch.build.targets.wheel]
|
|
17
|
+
packages = ["shellcove"]
|