-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
66 lines (57 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "mcp-server-aidd"
version = "0.1.22"
description = "This MCP server provides a set of tools that support AI-driven Development workflows."
readme = "README.md"
requires-python = ">=3.11"
authors = [{name = "SkyDeck.ai", email = "support@skydeck.ai"}]
license = {text = "MIT"}
keywords = ["mcp", "development", "ai", "aidd", "code-analysis"]
dependencies = [
"mcp>=1.6.0",
"tree-sitter>=0.24.0",
"tree-sitter-c-sharp>=0.23.1",
"tree-sitter-cpp>=0.23.4",
"tree-sitter-go>=0.23.4",
"tree-sitter-java>=0.23.5",
"tree-sitter-javascript>=0.23.1",
"tree-sitter-kotlin>=1.1.0",
"tree-sitter-php>=0.23.11",
"tree-sitter-python>=0.23.6",
"tree-sitter-ruby>=0.23.1",
"tree-sitter-rust==0.23.2",
"tree-sitter-typescript>=0.23.2",
"GitPython>=3.1.44",
"psutil>=7.0.0",
"mss>=10.0.0",
"pygetwindow>=0.0.9",
"pyobjc-framework-Quartz>=11.0",
"pillow>=11.1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/aidd"]
[tool.hatch.envs.default]
dependencies = [
"build",
"ruff>=0.9.1",
]
[tool.ruff]
line-length = 250
target-version = "py311"
# Enable rules
lint.select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
]
[project.urls]
Homepage = "https://github.com/skydeckai/mcp-server-aidd"
Repository = "https://github.com/skydeckai/mcp-server-aidd"
Documentation = "https://github.com/skydeckai/mcp-server-aidd/blob/main/README.md"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
mcp-server-aidd = "aidd:main"
aidd = "aidd:main"
aidd-cli = "aidd.cli:main"