-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 1013 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (29 loc) · 1013 Bytes
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
# Local packaging for the one-command entry point (adoption roadmap step 2):
# uvx --from /path/to/guidecheck guidecheck scan <url-or-file>
# Not published to any index. Version tracks guidecheck_constants.py.
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "guidecheck"
description = "Scan and verify AI-assistant instruction surfaces for hidden-instruction channels (GuideCheck reference tools)."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0 OR MIT" }
dynamic = ["version"]
[project.urls]
Homepage = "https://guidecheck.org/"
Repository = "https://github.com/snapsynapse/guidecheck"
[project.scripts]
guidecheck = "guidecheck_cli:main"
[tool.setuptools]
package-dir = { "" = "scripts" }
py-modules = [
"guidecheck_cli",
"guidecheck_scan",
"guidecheck_verify",
"guidecheck_constants",
"guidecheck_fetch",
]
[tool.setuptools.dynamic]
version = { attr = "guidecheck_constants.GUIDECHECK_VERSION" }