-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (34 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "verifymate"
version = "0.1.0"
description = "Repo-grounded verification assistant for vulnerability reports and AI-generated security findings."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "Verifymate contributors"}]
keywords = ["security", "vulnerability", "triage", "agent", "ai", "verification"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/Hinotoi-agent/Verifymate"
Repository = "https://github.com/Hinotoi-agent/Verifymate"
Issues = "https://github.com/Hinotoi-agent/Verifymate/issues"
[project.optional-dependencies]
dev = ["pytest>=8"]
[project.scripts]
verifymate = "finding_vetter.cli:main"
finding-vetter = "finding_vetter.cli:main"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
packages = ["src/finding_vetter"]
[tool.ruff]
line-length = 100