-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.06 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "hookguard"
version = "0.9.1"
description = "Risk scanner for Uniswap v4 hooks — CI-native, bytecode-aware, measured against real deployed hooks."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "chaosxcode" }]
keywords = ["uniswap", "v4", "hooks", "security", "solidity", "static-analysis", "defi"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/chaosxcode/hookguard"
Dashboard = "https://chaosxcode.github.io/hookguard/status/"
[project.scripts]
hookguard = "hookguard:main"
[tool.setuptools]
package-dir = { "" = "src" }
py-modules = [
"hookguard", "scan", "score", "ci", "risk", "corpus", "discover",
"verify_status", "unregistered_source", "bytecode", "attribution",
"reach", "status_feed",
]