mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-05 09:12:39 +00:00
Resolve conflicts from origin/main: relocate new CLI additions (checkpoint_tui, deploy/validate, remote_template, content_crew templates) into lib/cli, rewrite imports for the standalone crewai-cli package, port main's trained_agents_file param and predeploy validation, and bump python-dotenv/pydantic in crewai-cli to match crewai's constraints. Add the new mark_ephemeral_trace_batch_as_failed method to the relocated crewai.plus_api. Update tests for the new payload field, deploy --skip-validate kwarg, and crewai_cli import paths.
40 lines
953 B
TOML
40 lines
953 B
TOML
[project]
|
|
name = "crewai-cli"
|
|
version = "1.10.0"
|
|
description = "CLI for CrewAI - scaffold, run, deploy and manage AI agent crews without installing the full framework."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Joao Moura", email = "joao@crewai.com" }
|
|
]
|
|
requires-python = ">=3.10, <3.14"
|
|
dependencies = [
|
|
"click~=8.1.7",
|
|
"pydantic>=2.11.9,<2.13",
|
|
"pydantic-settings~=2.10.1",
|
|
"appdirs~=1.4.4",
|
|
"httpx~=0.28.1",
|
|
"pyjwt>=2.9.0,<3",
|
|
"rich>=13.7.1",
|
|
"tomli~=2.0.2",
|
|
"tomli-w~=1.1.0",
|
|
"packaging>=23.0",
|
|
"python-dotenv>=1.2.2,<2",
|
|
"uv~=0.9.13",
|
|
"portalocker~=2.7.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://crewai.com"
|
|
Documentation = "https://docs.crewai.com"
|
|
Repository = "https://github.com/crewAIInc/crewAI"
|
|
|
|
[project.scripts]
|
|
crewai = "crewai_cli.cli:crewai"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/crewai_cli"]
|