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