-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "meerkat"
version = "0.1.0"
description = "Meerkat: an AI agent for auditing repositories of traces against natural-language safety properties"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"anthropic>=0.39.0",
"docker>=7.0.0",
"inspect-ai>=0.3.157",
"numpy<2",
"openai>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
"scikit-learn>=1.3.0",
]
[project.scripts]
meerkat = "meerkat.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.8.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"I",
"N",
"UP",
"B",
"C4",
"SIM",
]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.hatch.build.targets.wheel]
packages = ["meerkat"]
include = [
"Dockerfile",
"compose.yaml",
]
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"