Files
langship.sh/langship-cli/pyproject.toml
T
patel-lyzrandClaude Opus 4.7 dd2c0e171a feat: add langship CLI (agents, envs, pipelines, creds, runs)
Python/Typer/Rich/httpx CLI in langship-cli/. Talks to the Langship API
over HTTP; config in ~/.langship/config.toml (no built-in default URL —
requires `langship login` or LANGSHIP_API_URL).

Command groups:
  agents      list/get/create/delete/trigger/follow-env/unfollow-env/test-auth/webhook
  envs        list/get/create/update/delete/add-pipeline/remove-pipeline/reorder
  pipelines   list/get(-o json|yaml)/push(create-or-update from file)/delete
  creds       list/get/create(--type aws|gcp|kv)/delete
  runs        list/get/logs(-f streams the execution SSE feed)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 22:15:08 +05:30

26 lines
589 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "langship"
version = "0.1.0"
description = "langship — CLI for the Langship control plane (agents, environments, pipelines, runs)."
requires-python = ">=3.10"
authors = [{ name = "Lyzr" }]
readme = "README.md"
license = { text = "MIT" }
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"httpx>=0.27.0",
"tomli>=2.0.0; python_version<'3.11'",
"tomli-w>=1.0.0",
]
[project.scripts]
langship = "langship.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/langship"]