-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 867 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 867 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
25
26
27
28
29
30
31
32
33
34
[project]
name = "deer-code"
version = "0.1.0"
description = "A minimalist yet sufficient project for enabling everyone to learn how to develop an AI Coding Agent."
readme = "README.md"
authors = [
{ name = "Henry Li", email = "henry1943@163.com" }
]
license = {text = "MIT"}
requires-python = ">=3.12"
dependencies = [
"httpx[socks]>=0.28.1",
"jinja2>=3.1.6",
"langchain-deepseek>=1.0.0",
"langchain-mcp-adapters>=0.1.11",
"langchain[openai]>=1.0.1",
"langgraph>=1.0.1",
"pexpect>=4.9.0",
"pydantic>=2.12.2",
"rich>=14.2.0",
"textual>=6.3.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
deer-code = "deer_code.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"