-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.46 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
[project]
name = "diffchunk"
version = "0.2.0"
description = "MCP server for navigating large diff files with intelligent chunking"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["mcp", "diff", "parsing", "llm", "ai-tools"]
authors = [
{name = "Peter Etelej", email = "peter@etelej.com"}
]
maintainers = [
{name = "Peter Etelej", email = "peter@etelej.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.2.1",
"mcp>=1.7.0,<2.0.0",
"chardet>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/peteretelej/diffchunk"
Repository = "https://github.com/peteretelej/diffchunk.git"
Issues = "https://github.com/peteretelej/diffchunk/issues"
Documentation = "https://github.com/peteretelej/diffchunk#readme"
[project.scripts]
diffchunk-mcp = "src.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"mypy>=1.16.1",
"pytest>=8.4.1",
"pytest-asyncio>=0.25.0",
"pytest-cov>=6.0.0",
"ruff>=0.12.0",
]