-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (69 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
81 lines (69 loc) · 1.76 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
[project]
name = "cocoa"
version = "0.1.0"
description = "Code Context Toolbox - MCP server for static code analysis"
authors = [
{name = "Rahul Krishna", email = "i.m.ralk@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
keywords = ["static-analysis", "mcp", "code-analysis", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"cldk>=1.0.2",
"fastmcp>=2.5.1",
"mcp>=1.9.1",
"toml>=0.10.2",
"typer>=0.16.0",
]
[dependency-groups]
test = [
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.1.1",
"pytest-pspec>=0.0.4",
]
dev = [
"ipdb>=0.13.13",
]
[project.scripts]
cocoa = "cocoa.cli:app"
[project.urls]
Homepage = "https://github.com/codellm-devkit/coco-toolbox"
Repository = "https://github.com/codellm-devkit/coco-toolbox"
Issue = "https://github.com/codellm-devkit/coco-toolbox/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.flake8]
max-line-length = 180
count = true
[tool.black]
line-length = 180
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"pragma: no branch",
"pass",
"subprocess.CalledProcessError",
"sys.exit",
"if __name__ == .__main__.:"
]
ignore_errors = true
[tool.coverage.xml]
output="./coverage.xml"
[tool.coverage.html]
title = "Test Coverage Report"
directory = "coverage_html_report"