mirror of
https://github.com/open-gitagent/langship.sh.git
synced 2026-08-03 07:21:04 +02:00
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>
26 lines
589 B
TOML
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"]
|