-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pickysteve"
dynamic = ["version"]
description = "Skill router and context picker for coding agents — picks the right skill per prompt, scans both the request and every retrieved doc for prompt injection."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [{ name = "KernelLord" }]
keywords = [
"mcp", "mcp-server", "skill-router", "context-engineering",
"prompt-injection", "coding-agents", "claude-code", "cursor", "aider",
"rag", "reranking",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Security",
]
dependencies = [
"stackone-defender[onnx]",
"rank-bm25",
"sentence-transformers",
"openai",
"numpy",
]
[project.urls]
Homepage = "https://github.com/KernelLord/pickysteve"
Repository = "https://github.com/KernelLord/pickysteve"
Issues = "https://github.com/KernelLord/pickysteve/issues"
Changelog = "https://github.com/KernelLord/pickysteve/releases"
[project.scripts]
pickysteve = "pickysteve.__main__:main"
[tool.hatch.version]
path = "pickysteve/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["pickysteve"]
[tool.hatch.build.targets.sdist]
include = ["pickysteve", "README.md", "LICENSE", "requirements.txt"]