-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
54 lines (49 loc) · 1.22 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
authors = [{ name = "Aman Rusia", email = "[email protected]" }]
name = "wcgw"
version = "2.2.2"
description = "Shell and coding agent on claude and chatgpt"
readme = "README.md"
requires-python = ">=3.11, <3.13"
dependencies = [
"openai>=1.46.0",
"typer>=0.12.5",
"rich>=13.8.1",
"python-dotenv>=1.0.1",
"tiktoken==0.7.0",
"pexpect>=4.9.0",
"shell>=1.0.1",
"types-pexpect>=4.9.0.20240806",
"toml>=0.10.2",
"petname>=2.6",
"pyte>=0.8.2",
"fastapi>=0.115.0",
"uvicorn>=0.31.0",
"websockets>=13.1",
"pydantic>=2.9.2",
"semantic-version>=2.10.0",
"nltk>=3.9.1",
"anthropic>=0.39.0",
"mcp",
"humanize>=4.11.0",
]
[project.urls]
Homepage = "https://github.com/rusiaaman/wcgw"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
wcgw_local = "wcgw:app"
wcgw = "wcgw:listen"
wcgw_relay = "wcgw.relay.serve:run"
wcgw_mcp = "wcgw:mcp_server"
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"types-toml>=0.10.8.20240310",
"autoflake",
"ipython>=8.12.3",
"gunicorn>=23.0.0",
]
[tool.uv.sources]
mcp = { git = "https://github.com/rusiaaman/python-sdk", rev = "53b69f397eae6ac81a51b84b34ff52b3119f11cb" }