agent-task-executor/pyproject.toml
zhukang dd797ab5e4 feat: initial commit of agent task executor framework
- Add core task execution framework
- Add LLM integration with DeepSeek
- Add text analysis task implementation
- Add configuration management
- Add tests and documentation
2025-01-14 20:53:09 +08:00

28 lines
553 B
TOML

[project]
name = "agent-task-executor"
version = "0.1.0"
description = "An LLM-based agent task execution framework"
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
dependencies = [
"python-dateutil>=2.8.2",
"typing-extensions>=4.4.0",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"tenacity>=8.2.0",
"httpx>=0.24.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=7.3.1",
"black>=23.7.0",
"isort>=5.12.0",
]