-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.93 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
[project]
name = "skydeckai-code"
version = "0.1.41"
description = "This MCP server provides a comprehensive set of tools for AI-driven Development workflows including file operations, code analysis, multi-language execution, web content fetching with HTML-to-markdown conversion, multi-engine web search, code content searching, persistent task management, and system information retrieval."
readme = "README.md"
requires-python = ">=3.11"
authors = [{name = "SkyDeck.ai", email = "support@skydeck.ai"}]
license = {text = "Apache 2.0"}
keywords = ["mcp", "development", "ai", "aidd", "code-analysis", "code"]
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",
"psutil>=7.0.0",
"mss>=10.0.0",
"pillow>=11.1.0",
"requests>=2.32.3",
"html2text>=2025.4.15",
"beautifulsoup4>=4.13.3",
"pyobjc-framework-Quartz>=11.0; sys_platform == 'darwin'",
"pygetwindow>=0.0.9; sys_platform == 'win32'",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[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/skydeckai-code"
Repository = "https://github.com/skydeckai/skydeckai-code"
Documentation = "https://github.com/skydeckai/skydeckai-code/blob/main/README.md"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
skydeckai-code = "src.aidd:main"
skydeckai-code-cli = "src.aidd.cli:main"