| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [project]
- name = "production-build-agents"
- version = "0.1.0"
- description = "Video production planning and execution agents built with LangGraph."
- requires-python = ">=3.12,<3.13"
- dependencies = [
- "fastapi>=0.116,<1",
- "langchain>=1.3,<1.4",
- "langchain-openai>=1.1,<2",
- "langgraph>=1.2,<1.3",
- "langgraph-checkpoint-sqlite>=3.1,<4",
- "obagent-sdk>=0.5.2,<0.6",
- "opencv-python-headless>=4.11,<5",
- "oss2>=2.19,<3",
- "pillow>=11,<12",
- "pydantic>=2.13,<3",
- "python-dotenv>=1.2,<2",
- "requests>=2.32,<3",
- "uvicorn>=0.35,<1",
- ]
- [build-system]
- requires = ["setuptools>=75"]
- build-backend = "setuptools.build_meta"
- [tool.setuptools.packages.find]
- where = ["."]
- include = ["production_build_agents*", "visualization*"]
- [tool.setuptools.package-data]
- production_build_agents = [
- "agents/*/*.md",
- "agents/*/skills/*/*.md",
- "tools/models/*.onnx",
- "tools/models/*.txt",
- ]
- [[tool.uv.index]]
- name = "aiddit"
- url = "https://pypi.aiddit.com/repository/pypi-group/simple"
- explicit = true
- [tool.uv.sources]
- obagent-sdk = { index = "aiddit" }
- [dependency-groups]
- dev = [
- "langgraph-cli[inmem]>=0.4.31",
- "pytest>=8,<10",
- ]
|