From e60ddb7db5ebe095dfb0eaeacbfaf35a29fc7d4d Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 24 Nov 2025 18:42:14 -0500 Subject: [PATCH] ops: Updated pyproject.toml to include maintainers and consolidated authors due to pypi limitations --- sdk/README.md | 4 ++-- sdk/pyproject.toml | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sdk/README.md b/sdk/README.md index 4c6c6d4..81fe7cf 100644 --- a/sdk/README.md +++ b/sdk/README.md @@ -1,9 +1,9 @@ # Codon SDK Documentation -Complete guide to building observable AI agents with the Codon SDK. +Complete guide to [building observable AI agents with the Codon SDK](https://codon-ops.github.io/codon-sdk/). ## Documentation Sections -- [**What is the Codon SDK**](https://codon-ops.github.io/codon-sdk/what-is-codon/) - Design philosophy and core concepts +- [**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.) diff --git a/sdk/pyproject.toml b/sdk/pyproject.toml index d13fb55..2dd8008 100644 --- a/sdk/pyproject.toml +++ b/sdk/pyproject.toml @@ -5,12 +5,17 @@ build-backend = "setuptools.build_meta" [project] # This is the main SDK package name name = "codon_sdk" -version = "0.1.0a2" +version = "0.1.0a3" license = {text = "Apache-2.0"} authors = [ + { name="Sheldon Gilbert, Martin Arroyo", email="martin@codonops.ai" }, { name="Martin Arroyo", email="martin@codonops.ai" }, { name="Sheldon Gilbert", email="sheldon@codonops.ai"}, ] +maintainers = [ + { name="Carl Gordon", email="carl@codonops.ai"}, + { name="Luis Moreno", email="luis@codonops.ai"}, +] description = "The core SDK for Codon project components, including agents and data schemas." readme = "README.md" requires-python = ">=3.9"