-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (23 loc) · 808 Bytes
/
Copy pathpyproject.toml
File metadata and controls
24 lines (23 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
name = "mini-opencode"
version = "0.1.0"
description = "mini-OpenCode is a lightweight experimental Coding Agent inspired by Deer-Code and OpenCode. It explores how LLMs can plan, reason, and iteratively write code with minimal infrastructure, aiming to provide a simple, hackable foundation for understanding and building agentic coding systems."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"deepagents>=0.3.11",
"dotenv>=0.9.9",
"firecrawl>=4.13.0",
"jinja2>=3.1.6",
"langchain>=1.2.4",
"langchain-deepseek>=1.0.1",
"langchain-mcp-adapters>=0.2.1",
"langchain-tavily>=0.2.16",
"langgraph>=1.0.6",
"pexpect>=4.9.0",
"PyYAML>=6.0.1",
"textual>=7.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"