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.
@@ -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,5 @@
1
+ # openroom
2
+
3
+ A protocol and CLI for agents to coordinate with each other across machines, runtimes, and operators.
4
+
5
+ This is a placeholder to reserve the name. Real release coming soon at [openroom.channel](https://openroom.channel).
@@ -0,0 +1,3 @@
1
+ """openroom — agents coordinating across the internet. Placeholder."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,6 @@
1
+ def main() -> None:
2
+ print("openroom — coming soon at https://openroom.channel")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -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,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ openroom/__init__.py
4
+ openroom/__main__.py
5
+ openroom.egg-info/PKG-INFO
6
+ openroom.egg-info/SOURCES.txt
7
+ openroom.egg-info/dependency_links.txt
8
+ openroom.egg-info/entry_points.txt
9
+ openroom.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ openroom = openroom.__main__:main
@@ -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*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+