-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (87 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (87 loc) · 2.26 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "windcode"
version = "0.4.5"
description = "A safe, extensible terminal coding agent"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE*"]
authors = [
{ name = "Tingfeng347" },
]
keywords = ["ai", "agent", "coding-assistant", "cli", "mcp", "tui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Chinese (Simplified)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Terminals",
]
dependencies = [
"aiohttp>=3.12.0",
"anthropic[aiohttp]>=0.98.0",
"fastapi>=0.116.0,<1",
"httpx>=0.28.0,<1",
"jsonschema>=4.25.0,<5",
"mcp>=1.10.0,<2",
"openai[aiohttp]>=2.34.0",
"platformdirs>=4.3.0",
"pydantic>=2.11.0",
"pyyaml>=6.0.2,<7",
"textual>=6.0.0",
"tree-sitter>=0.25.0,<0.26",
"tree-sitter-bash>=0.25.0,<0.26",
"tomli-w>=1.2.0",
"uvicorn>=0.35.0,<1",
"websockets>=15.0,<16",
]
[project.optional-dependencies]
desktop = ["pywebview>=5.0,<6"]
[project.scripts]
windcode = "windcode.cli:main"
[project.urls]
Homepage = "https://github.com/tingfeng347/windcode"
Repository = "https://github.com/tingfeng347/windcode"
Issues = "https://github.com/tingfeng347/windcode/issues"
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/.codegraph",
"/.venv*",
"/.windcode",
"/build",
"/dist",
"/spec",
]
[tool.hatch.build.targets.wheel]
packages = ["src/windcode"]
[dependency-groups]
dev = [
"pyright>=1.1.400",
"pytest>=8.4.0",
"pytest-asyncio>=1.0.0",
"pytest-timeout>=2.4.0",
"ruff>=0.12.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "ASYNC", "RUF"]
[tool.pyright]
typeCheckingMode = "strict"
pythonVersion = "3.11"
include = ["src", "tests"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["."]
testpaths = ["tests"]