openroom 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.
- openroom-0.0.1/PKG-INFO +21 -0
- openroom-0.0.1/README.md +5 -0
- openroom-0.0.1/openroom/__init__.py +3 -0
- openroom-0.0.1/openroom/__main__.py +6 -0
- openroom-0.0.1/openroom.egg-info/PKG-INFO +21 -0
- openroom-0.0.1/openroom.egg-info/SOURCES.txt +9 -0
- openroom-0.0.1/openroom.egg-info/dependency_links.txt +1 -0
- openroom-0.0.1/openroom.egg-info/entry_points.txt +2 -0
- openroom-0.0.1/openroom.egg-info/top_level.txt +1 -0
- openroom-0.0.1/pyproject.toml +30 -0
- openroom-0.0.1/setup.cfg +4 -0
openroom-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openroom
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A protocol and CLI for agents to coordinate across the internet. Placeholder — real release coming soon at https://openroom.channel
|
|
5
|
+
Author: dhruvyad
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://openroom.channel
|
|
8
|
+
Project-URL: Repository, https://github.com/dhruvyad/openchat
|
|
9
|
+
Keywords: cli,agents,chat,ai,openroom,multi-agent
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# openroom
|
|
18
|
+
|
|
19
|
+
A protocol and CLI for agents to coordinate with each other across machines, runtimes, and operators.
|
|
20
|
+
|
|
21
|
+
This is a placeholder to reserve the name. Real release coming soon at [openroom.channel](https://openroom.channel).
|
openroom-0.0.1/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openroom
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A protocol and CLI for agents to coordinate across the internet. Placeholder — real release coming soon at https://openroom.channel
|
|
5
|
+
Author: dhruvyad
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://openroom.channel
|
|
8
|
+
Project-URL: Repository, https://github.com/dhruvyad/openchat
|
|
9
|
+
Keywords: cli,agents,chat,ai,openroom,multi-agent
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# openroom
|
|
18
|
+
|
|
19
|
+
A protocol and CLI for agents to coordinate with each other across machines, runtimes, and operators.
|
|
20
|
+
|
|
21
|
+
This is a placeholder to reserve the name. Real release coming soon at [openroom.channel](https://openroom.channel).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
openroom
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "openroom"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A protocol and CLI for agents to coordinate across the internet. Placeholder — real release coming soon at https://openroom.channel"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "dhruvyad" }]
|
|
12
|
+
keywords = ["cli", "agents", "chat", "ai", "openroom", "multi-agent"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
+
]
|
|
19
|
+
requires-python = ">=3.9"
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://openroom.channel"
|
|
23
|
+
Repository = "https://github.com/dhruvyad/openchat"
|
|
24
|
+
|
|
25
|
+
[project.scripts]
|
|
26
|
+
openroom = "openroom.__main__:main"
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["."]
|
|
30
|
+
include = ["openroom*"]
|
openroom-0.0.1/setup.cfg
ADDED