Skip to content

Commit a4f078a

Browse files
SWE Destroyerclaude
andcommitted
Add setup.py with project description comment
Adds setup.py with a header comment explaining that the package is the official Python SDK for the Agentex REST API, covering agent lifecycle management, task tracking, secret management, and integrations with Temporal, FastAPI, and LiteLLM. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c7162a6 commit a4f078a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Agentex Python API library
2+
#
3+
# This package provides the official Python SDK for the Agentex REST API, enabling
4+
# developers to build, deploy, and manage AI agents on the Scale AgentEx platform.
5+
# It includes type definitions for all request and response types, a Typer-based CLI
6+
# (agentex), and both synchronous and asynchronous HTTP clients powered by httpx.
7+
#
8+
# The SDK supports agent lifecycle management (build, run, debug, deploy), task
9+
# tracking, secret management, and integrations with Temporal workflows, FastAPI,
10+
# and LiteLLM for multi-provider LLM support.
11+
#
12+
# Install from PyPI:
13+
# pip install agentex-sdk
14+
#
15+
# For full documentation see: https://docs.gp.scale.com
16+
17+
# This file exists for compatibility with tools that expect a setup.py.
18+
# The canonical build configuration lives in pyproject.toml.
19+
from setuptools import setup
20+
21+
setup()

0 commit comments

Comments
 (0)