-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 978 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 978 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
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "logomesh"
version = "0.1.0"
description = "KV-Cache Inception — Reversible MCTS for Alignment Faking Detection"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"accelerate>=0.30.0",
"huggingface-hub>=1.7.2",
"jinja2>=3.1.0",
"openai>=2.8.1",
"pydantic>=2.11.9",
"python-docx>=1.2.0",
"python-dotenv>=1.1.1",
"scikit-learn>=1.4.0",
"sentence-transformers>=3.0.0",
"torch>=2.0.0",
"transformers>=4.40.0",
]
[tool.uv]
package = true
[dependency-groups]
dev = [
"mypy>=1.18.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[tool.uv.sources]
torch = { index = "pytorch-cu124" }
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
packages = ["logomesh"]