-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.7 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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "framecite"
version = "0.1.0"
description = "A local, evidence-first MCP server for bounded PCAP troubleshooting."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Dani Issac" }]
keywords = [
"mcp",
"network-troubleshooting",
"packet-analysis",
"pcap",
"scapy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Networking :: Monitoring",
]
dependencies = [
"httpx>=0.28,<1",
"mcp>=1.28.1,<2",
"pydantic>=2.11,<3; python_version < '3.14'",
"pydantic>=2.12,<3; python_version >= '3.14'",
"scapy>=2.7.0,<3",
"typing-extensions>=4.12,<5",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"check-jsonschema>=0.33",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"pytest-socket>=0.7",
"ruff>=0.11",
]
[project.scripts]
framecite = "framecite.cli:main"
[project.urls]
Homepage = "https://github.com/daniissac/framecite"
Issues = "https://github.com/daniissac/framecite/issues"
Repository = "https://github.com/daniissac/framecite"
[tool.hatch.build.targets.wheel]
packages = ["src/framecite"]
[tool.pytest.ini_options]
addopts = "-q --disable-socket --allow-unix-socket"
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "SIM", "UP"]