-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 846 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 846 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
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "policyproof"
version = "0.1.0"
description = "Research-driven RAG and citation verification for public AI governance documents."
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"numpy==2.5.1",
"onnxruntime==1.27.0",
"pdfplumber==0.11.10",
"pypdf==6.14.2",
"tokenizers==0.22.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.9",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["policyproof"]
[tool.setuptools.package-data]
policyproof = ["assets/*.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib", "-ra"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]