-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.92 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "verbatim-citation-gate"
# Read from src/verbatim_citation_gate/__init__.py -- a second hand-written
# version here could drift from __version__ and CI would stay green while the
# package and the module disagreed about what they are.
dynamic = ["version"]
description = "Catch fabricated RAG citations before they reach the user: a zero-token verbatim gate + a burden-of-proof judge, framework-agnostic."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "Palo Alto AI Research Lab" }]
keywords = ["rag", "citations", "hallucination", "faithfulness", "grounding", "llm", "evaluation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [] # the gate is pure stdlib; the judge takes any llm_call you supply
[project.urls]
Homepage = "https://github.com/tonydzi/verbatim-citation-gate"
Repository = "https://github.com/tonydzi/verbatim-citation-gate"
Issues = "https://github.com/tonydzi/verbatim-citation-gate/issues"
Documentation = "https://tonydzi.github.io/verbatim-citation-gate/"
[project.optional-dependencies]
test = ["pytest>=7"]
[tool.hatch.version]
path = "src/verbatim_citation_gate/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/verbatim_citation_gate"]