carbon-md 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,4 @@
1
+ node_modules/
2
+ dist/
3
+ .carbon-md/
4
+ *.log
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: carbon-md
3
+ Version: 0.0.1
4
+ Summary: Python SDK for carbon.md — the open standard for carbon-governed AI agents. Placeholder release; the SDK (EcoLogits wrapper + LangGraph callback) is in development.
5
+ Project-URL: Homepage, https://github.com/carbon-md/carbon-md
6
+ Project-URL: Repository, https://github.com/carbon-md/carbon-md
7
+ Project-URL: Issues, https://github.com/carbon-md/carbon-md/issues
8
+ Author-email: Agentic Realism <carbon@agentic-realism.com>
9
+ License: MIT
10
+ Keywords: agents,ai,carbon,climate,emissions,llm,sustainability
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Scientific/Engineering
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # carbon-md (Python) — placeholder
19
+
20
+ This package reserves the name for the **carbon.md Python SDK**, part of
21
+ [carbon.md](https://github.com/carbon-md/carbon-md) — an open standard for
22
+ carbon-governed AI agents: measure agent emissions, govern them with a
23
+ human-authored policy file, fund verified carbon-removal contributions,
24
+ and prove it.
25
+
26
+ **The SDK is in development.** Planned for 0.1:
27
+
28
+ - Usage tracking built on [EcoLogits](https://ecologits.ai/) (OpenAI, Anthropic, Mistral, …)
29
+ - A LangGraph callback / CrewAI integration
30
+ - Ledger interop with the reference CLI
31
+
32
+ **Works today:** the TypeScript reference CLI —
33
+
34
+ ```bash
35
+ npx carbon-md init
36
+ ```
37
+
38
+ Spec, discussion and roadmap: <https://github.com/carbon-md/carbon-md>
39
+
40
+ MIT — stewarded by [Agentic Realism](https://agentic-realism.com).
@@ -0,0 +1,23 @@
1
+ # carbon-md (Python) — placeholder
2
+
3
+ This package reserves the name for the **carbon.md Python SDK**, part of
4
+ [carbon.md](https://github.com/carbon-md/carbon-md) — an open standard for
5
+ carbon-governed AI agents: measure agent emissions, govern them with a
6
+ human-authored policy file, fund verified carbon-removal contributions,
7
+ and prove it.
8
+
9
+ **The SDK is in development.** Planned for 0.1:
10
+
11
+ - Usage tracking built on [EcoLogits](https://ecologits.ai/) (OpenAI, Anthropic, Mistral, …)
12
+ - A LangGraph callback / CrewAI integration
13
+ - Ledger interop with the reference CLI
14
+
15
+ **Works today:** the TypeScript reference CLI —
16
+
17
+ ```bash
18
+ npx carbon-md init
19
+ ```
20
+
21
+ Spec, discussion and roadmap: <https://github.com/carbon-md/carbon-md>
22
+
23
+ MIT — stewarded by [Agentic Realism](https://agentic-realism.com).
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "carbon-md"
7
+ version = "0.0.1"
8
+ description = "Python SDK for carbon.md — the open standard for carbon-governed AI agents. Placeholder release; the SDK (EcoLogits wrapper + LangGraph callback) is in development."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.9"
12
+ authors = [{ name = "Agentic Realism", email = "carbon@agentic-realism.com" }]
13
+ keywords = ["ai", "agents", "carbon", "sustainability", "llm", "emissions", "climate"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "Programming Language :: Python :: 3",
18
+ "Topic :: Scientific/Engineering",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/carbon-md/carbon-md"
23
+ Repository = "https://github.com/carbon-md/carbon-md"
24
+ Issues = "https://github.com/carbon-md/carbon-md/issues"
@@ -0,0 +1,25 @@
1
+ """carbon.md — Python SDK (placeholder).
2
+
3
+ carbon.md is an open standard for carbon-governed AI agents: a Markdown
4
+ policy file plus tooling to measure agent emissions, govern them with
5
+ human-set policies, and fund verified carbon-removal contributions.
6
+
7
+ This 0.0.x release reserves the package name while the SDK is built.
8
+ Planned for 0.1: an EcoLogits-based usage tracker, a LangGraph callback,
9
+ and ledger interop with the reference CLI (`npx carbon-md`).
10
+
11
+ Spec and reference implementation: https://github.com/carbon-md/carbon-md
12
+ """
13
+
14
+ __version__ = "0.0.1"
15
+
16
+ SPEC_URL = "https://github.com/carbon-md/carbon-md"
17
+
18
+
19
+ def status() -> str:
20
+ """Return a short note about the state of this package."""
21
+ return (
22
+ "carbon-md (Python) is a placeholder — the SDK is in development. "
23
+ f"Follow along at {SPEC_URL} — meanwhile the reference CLI works today: "
24
+ "npx carbon-md init"
25
+ )