forked from 7vik/AmongUs
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (64 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (64 loc) · 1.63 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
67
68
[project]
name = "amongllms"
version = "0.1.0"
description = "Among Us as a sandbox for measuring and detecting agentic deception in LLMs"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
# Core game engine
"amongagents",
# Human trials server
"fastapi>=0.103.1",
"uvicorn[standard]>=0.23.2",
"pydantic>=2.3.0",
# Utilities
"python-dotenv>=1.0.1",
"tqdm>=4.66.2",
"openskill>=6.2.0",
"matplotlib>=3.10.8",
"seaborn>=0.13.2",
"boto3>=1.35.0",
"google-cloud-storage>=2.0.0",
"openai>=1.32.0",
]
[project.optional-dependencies]
# For running analysis notebooks in reports/
analysis = [
"numpy>=2.0.2",
"pandas>=2.2.2",
"matplotlib>=3.9.1",
"seaborn>=0.13.2",
]
# For running linear probe experiments
probes = [
"torch>=2.5.1",
"transformer-lens>=2.11.0",
"numpy>=2.0.2",
"pandas>=2.2.2",
]
# Install everything
all = [
"amongllms[analysis,probes]",
]
[tool.uv.sources]
amongagents = { path = "among-agents", editable = true }
[dependency-groups]
dev = [
# kaleido 1.2.0 is incompatible with plotly>=6.9 (choreographer API drift)
"kaleido>=1.3",
"plotly>=6.9.0",
"polars>=1.40.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"rich>=14.3.3",
"ruff>=0.14.13",
]
[tool.pytest.ini_options]
# Skip integration tests by default (requires API keys, external services)
# Run integration tests with: pytest -m integration
addopts = "-m 'not integration'"
markers = [
"integration: marks tests that require external API calls (e.g., OpenRouter)",
]
asyncio_default_fixture_loop_scope = "function"
pythonpath = [".", "reporting"]