agent-task-executor/pyproject.toml
zhukang 7514326279 refactor: improve package structure
- Update import paths to use full package name
- Add package __init__.py
- Update pyproject.toml with correct dependencies and tools
- Configure pytest, black, and isort
2025-01-14 20:54:19 +08:00

43 lines
808 B
TOML

[project]
name = "agent_task_executor"
version = "0.1.0"
description = "A flexible task execution framework that uses LLMs"
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
dependencies = [
"httpx>=0.24.1",
"tenacity>=8.2.2",
"pyyaml>=6.0.1",
"cryptography>=41.0.3",
"python-dotenv>=1.0.0",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.7.0",
"isort>=5.12.0",
"mypy>=1.4.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v"
[tool.black]
line-length = 100
target-version = ["py38"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3