-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 1.12 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kernelguard"
version = "0.3.2"
description = "Rule-based GPU kernel hack detector."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Sinatras" },
]
keywords = [
"gpu",
"kernel",
"security",
"benchmark",
"detection",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Testing",
]
dependencies = []
[project.optional-dependencies]
api = ["starlette>=0.37", "uvicorn[standard]>=0.29"]
mcp = ["mcp[cli]>=1.2.0"]
parquet = ["pyarrow>=15"]
[project.scripts]
kernelguard = "kernelguard:main"
kguard = "kernelguard:main"
kernelguard-mcp = "kernelguard_mcp:main"
kguard-mcp = "kernelguard_mcp:main"
kernelguard-api = "kernelguard_api:main"
kguard-api = "kernelguard_api:main"
[tool.setuptools]
py-modules = ["kernelguard", "kernelguard_mcp", "kernelguard_api"]