-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rh-indicators"
version = "0.1.0"
authors = [
{ name="David Johnston" },
]
description = "Leading indicators of reward hacking - predicting exploit propensity before fine-tuning"
readme = "README.md"
requires-python = ">=3.11,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"djinn-framework",
"numpy",
"pandas",
"matplotlib",
"seaborn",
"scipy",
"tqdm",
"pyyaml",
"lifelines>=0.30.0",
"magic-wormhole>=0.22.0",
"scikit-learn>=1.8.0",
"transformers>=5.0",
"huggingface-hub>=1.0",
"trl>=0.18",
"aiohttp",
]
[tool.uv.sources]
djinn-framework = { path = "/mnt/ssd-1/david/djinn", editable = true }
[project.optional-dependencies]
serve = [
"vllm>=0.17",
]
dev = [
"pytest",
"black",
"ruff",
]
[project.urls]
"Homepage" = "https://github.com/EleutherAI/rh-indicators"
[tool.setuptools.packages.find]
where = ["src"]
include = ["rh_indicators*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.black]
line-length = 100
target-version = ["py311"]