officefloor 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,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: officefloor
3
+ Version: 0.0.1
4
+ Summary: A live isometric floor view of your AI agent org. Coming soon.
5
+ License: MIT
6
+ Project-URL: Homepage, https://officefloor.ai
7
+ Keywords: ai,agents,visualization,isometric,office,orchestration
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+
14
+ # 🏢 Office Floor
15
+
16
+ A live, isometric floor view of your AI agent org — watch every agent work in real time.
17
+
18
+ **Coming soon:** https://officefloor.ai
19
+
20
+ *This `0.0.1` is a name placeholder; the full release lands shortly.*
@@ -0,0 +1,7 @@
1
+ # 🏢 Office Floor
2
+
3
+ A live, isometric floor view of your AI agent org — watch every agent work in real time.
4
+
5
+ **Coming soon:** https://officefloor.ai
6
+
7
+ *This `0.0.1` is a name placeholder; the full release lands shortly.*
@@ -0,0 +1,10 @@
1
+ """Office Floor — a live isometric floor view of your AI agent org.
2
+
3
+ This is a name-placeholder release. The real thing is coming soon.
4
+ https://officefloor.ai
5
+ """
6
+ __version__ = "0.0.1"
7
+
8
+
9
+ def main() -> None:
10
+ print("🏢 Office Floor is coming soon — https://officefloor.ai")
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: officefloor
3
+ Version: 0.0.1
4
+ Summary: A live isometric floor view of your AI agent org. Coming soon.
5
+ License: MIT
6
+ Project-URL: Homepage, https://officefloor.ai
7
+ Keywords: ai,agents,visualization,isometric,office,orchestration
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+
14
+ # 🏢 Office Floor
15
+
16
+ A live, isometric floor view of your AI agent org — watch every agent work in real time.
17
+
18
+ **Coming soon:** https://officefloor.ai
19
+
20
+ *This `0.0.1` is a name placeholder; the full release lands shortly.*
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ officefloor/__init__.py
4
+ officefloor.egg-info/PKG-INFO
5
+ officefloor.egg-info/SOURCES.txt
6
+ officefloor.egg-info/dependency_links.txt
7
+ officefloor.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ officefloor
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "officefloor"
7
+ version = "0.0.1"
8
+ description = "A live isometric floor view of your AI agent org. Coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ keywords = ["ai", "agents", "visualization", "isometric", "office", "orchestration"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://officefloor.ai"
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["."]
24
+ include = ["officefloor*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+