AgentDebugger-training-v3 / pyproject.toml
shank
fix: resolve pip dependency conflicts for HF Spaces build
d0d5f60
raw
history blame contribute delete
532 Bytes
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentdebugger-env"
version = "1.0.0"
description = "An OpenEnv-compliant debugging environment for AI agents"
readme = "README.md"
requires-python = ">=3.10"
# Dependencies are managed via requirements.txt to avoid pip resolution conflicts
# during HF Spaces Docker builds. Keep this list empty.
dependencies = []
[tool.setuptools.packages.find]
include = ["env*", "server*"]
[project.scripts]
server = "server.app:main"