coaxis 0.0.0__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.
coaxis-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: coaxis
3
+ Version: 0.0.0
4
+ Summary: A shared, governed environment for people and agents to understand, act, and carry work through to an outcome.
5
+ Keywords: agents,workflows,coplane
6
+ Author: Coplane
7
+ Author-email: Coplane <chris@coplane.com>
8
+ License-Expression: LicenseRef-Proprietary
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
15
+ Classifier: Typing :: Typed
16
+ Requires-Python: >=3.12
17
+ Project-URL: Homepage, https://coplane.com
18
+ Project-URL: Repository, https://github.com/coplane/coaxis
19
+ Description-Content-Type: text/markdown
20
+
21
+ # coaxis
22
+
23
+ A forthcoming project from [Coplane](https://coplane.com).
24
+
25
+ A shared, governed environment where people and agents understand the business, act across systems, carry work through to an outcome, and learn from every decision.
26
+
27
+ This package is a placeholder to reserve the name. There is nothing to install or use yet.
28
+
29
+ ## Status
30
+
31
+ Planning. Follow [coplane/coaxis](https://github.com/coplane/coaxis) for updates.
32
+
33
+ ## License
34
+
35
+ Proprietary. Copyright Coplane, Inc. All rights reserved.
coaxis-0.0.0/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # coaxis
2
+
3
+ A forthcoming project from [Coplane](https://coplane.com).
4
+
5
+ A shared, governed environment where people and agents understand the business, act across systems, carry work through to an outcome, and learn from every decision.
6
+
7
+ This package is a placeholder to reserve the name. There is nothing to install or use yet.
8
+
9
+ ## Status
10
+
11
+ Planning. Follow [coplane/coaxis](https://github.com/coplane/coaxis) for updates.
12
+
13
+ ## License
14
+
15
+ Proprietary. Copyright Coplane, Inc. All rights reserved.
@@ -0,0 +1,34 @@
1
+ [project]
2
+ name = "coaxis"
3
+ version = "0.0.0"
4
+ description = "A shared, governed environment for people and agents to understand, act, and carry work through to an outcome."
5
+ readme = "README.md"
6
+ license = "LicenseRef-Proprietary"
7
+ requires-python = ">=3.12"
8
+ dependencies = []
9
+ keywords = [
10
+ "agents",
11
+ "workflows",
12
+ "coplane",
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Topic :: Software Development :: Libraries :: Python Modules",
21
+ "Typing :: Typed",
22
+ ]
23
+
24
+ [[project.authors]]
25
+ name = "Coplane"
26
+ email = "chris@coplane.com"
27
+
28
+ [project.urls]
29
+ Homepage = "https://coplane.com"
30
+ Repository = "https://github.com/coplane/coaxis"
31
+
32
+ [build-system]
33
+ requires = ["uv_build>=0.11.7,<0.12.0"]
34
+ build-backend = "uv_build"
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "coaxis"
3
+ version = "0.0.0"
4
+ description = "A shared, governed environment for people and agents to understand, act, and carry work through to an outcome."
5
+ readme = "README.md"
6
+ license = "LicenseRef-Proprietary"
7
+ authors = [
8
+ { name = "Coplane", email = "chris@coplane.com" }
9
+ ]
10
+ requires-python = ">=3.12"
11
+ dependencies = []
12
+ keywords = ["agents", "workflows", "coplane"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
19
+ "Topic :: Software Development :: Libraries :: Python Modules",
20
+ "Typing :: Typed",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://coplane.com"
25
+ Repository = "https://github.com/coplane/coaxis"
26
+
27
+ [build-system]
28
+ requires = ["uv_build>=0.11.7,<0.12.0"]
29
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from coaxis!"
File without changes