-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.44 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chisel-test-impact"
version = "0.9.2"
description = "Test impact analysis and code intelligence for LLM agents"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
dependencies = []
keywords = [
"test-impact-analysis", "code-intelligence", "mcp", "llm", "ai-agents",
"git-analysis", "churn", "risk-map", "test-coverage", "code-ownership",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/IronAdamant/Chisel"
Repository = "https://github.com/IronAdamant/Chisel"
Issues = "https://github.com/IronAdamant/Chisel/issues"
[project.optional-dependencies]
mcp = ["mcp>=1.0.0"]
dev = ["pytest>=7.0", "pytest-cov>=4.0", "ruff>=0.1.0"]
[project.scripts]
chisel = "chisel.cli:main"
chisel-mcp = "chisel.mcp_stdio:main"
[tool.setuptools.packages.find]
include = ["chisel*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore:coroutine.*was never awaited:RuntimeWarning",
]
[tool.ruff]
line-length = 100