From 8a9fc70ca1e8399ead7f24afe308f4c9b570c974 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 24 Nov 2025 18:17:52 -0500 Subject: [PATCH] config: Updated Pyproject.toml for SDK core to facilitate release --- sdk/README.md | 16 ++++++++++++++++ sdk/pyproject.toml | 15 ++++++++------- 2 files changed, 24 insertions(+), 7 deletions(-) create mode 100644 sdk/README.md diff --git a/sdk/README.md b/sdk/README.md new file mode 100644 index 0000000..4c6c6d4 --- /dev/null +++ b/sdk/README.md @@ -0,0 +1,16 @@ +# Codon SDK Documentation + +Complete guide to building observable AI agents with the Codon SDK. + +## Documentation Sections +- [**What is the Codon SDK**](https://codon-ops.github.io/codon-sdk/what-is-codon/) - Design philosophy and core concepts +- [**Getting Started**](https://codon-ops.github.io/codon-sdk/getting-started/) - Installation and basic setup +- [**Building from Scratch**](https://codon-ops.github.io/codon-sdk/building-from-scratch/) - Create agents with CodonWorkload +- [**Instrumentation**](https://codon-ops.github.io/codon-sdk/instrumentation/) - Framework-specific integrations (LangGraph, OpenAI, etc.) +- [**API Reference**](https://codon-ops.github.io/codon-sdk/api-reference/) - Complete API documentation + +## Quick Start + +1. [**Getting Started**](https://codon-ops.github.io/codon-sdk/getting-started/) - Installation and environment setup +2. **New to agent frameworks**: Create agents with [Building from Scratch](https://codon-ops.github.io/codon-sdk/getting-started/) +3. **LangGraph users**: Integrate existing code with [LangGraph Integration](https://codon-ops.github.io/codon-sdk/getting-started/) diff --git a/sdk/pyproject.toml b/sdk/pyproject.toml index 22387ed..d13fb55 100644 --- a/sdk/pyproject.toml +++ b/sdk/pyproject.toml @@ -5,11 +5,11 @@ build-backend = "setuptools.build_meta" [project] # This is the main SDK package name name = "codon_sdk" -version = "0.1.0a1" -license = "Apache-2.0" +version = "0.1.0a2" +license = {text = "Apache-2.0"} authors = [ - { name="Sheldon Gilbert", email="sheldon@codonops.ai"}, { name="Martin Arroyo", email="martin@codonops.ai" }, + { name="Sheldon Gilbert", email="sheldon@codonops.ai"}, ] description = "The core SDK for Codon project components, including agents and data schemas." readme = "README.md" @@ -29,9 +29,9 @@ dependencies = [ where = ["src"] # This section defines the "extras" for optional features of the core SDK -[project.optional-dependencies] +# [project.optional-dependencies] # Defines `pip install codon-sdk[nodespec]` -nodespec = [] +# nodespec = [] # Defines `pip install codon-sdk[agents]` # List any dependencies needed ONLY by the agent framework here. @@ -40,5 +40,6 @@ nodespec = [] # ] [project.urls] -"Homepage" = "https://github.com/your-username/codon-sdk" -"Bug Tracker" = "https://github.com/your-username/codon-sdk/issues" +"Homepage" = "https://github.com/Codon-Ops/codon-sdk" +"Bug Tracker" = "https://github.com/Codon-Ops/codon-sdk/issues" +"Documentation" = "https://codon-ops.github.io/codon-sdk/"