-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 813 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
[project]
name = "certus"
version = "0.1.0"
description = "Correctness certificates for AI-generated code. A finetuned model proposes what your function guarantees; an automated checker proves it or finds a counterexample."
license = {text = "Apache-2.0"}
authors = [{name = "Anish Shrestha"}]
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0",
"pyyaml>=6.0",
"hypothesis>=6.0",
"click>=8.0",
]
[project.optional-dependencies]
checker = ["crosshair-tool", "z3-solver"]
pipeline = ["anthropic", "datasets", "requests"]
training = ["unsloth", "transformers", "peft", "trl"]
all = ["certus[checker,pipeline,training]"]
[project.scripts]
certus = "certus.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]